In [24]:
from twitter import Twitter, OAuth, TwitterHTTPError, TwitterStream
import json

In [9]:
!pip install twitter


Collecting twitter
  Downloading twitter-1.17.1-py2.py3-none-any.whl (55kB)
    100% |████████████████████████████████| 61kB 1.5MB/s ta 0:00:01
Installing collected packages: twitter
Successfully installed twitter-1.17.1

In [12]:
#from twython import Twython

import twitter

In [21]:
CONSUMER_KEY = 'pxeqo0ylpUayIIl5Nlc2kBmkb'
CONSUMER_SECRET = 'JUAAG5ilMS9TxZN1Y0ZKwPhsamtE3gFoIYTnKfwWTGqGmF6zXL'
ACCESS_TOKEN = '395150986-GiB9RbBtrjjiEetZ977wtQwYGVWCuhiPMir0962F'
ACCESS_SECRET = 'DUk5aVVGGy55PySqjVNMWV4MTghtvdfwXbDJROUEnrH9Y'

oauth = OAuth(ACCESS_TOKEN, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET)

In [22]:
# Initiate the connection to Twitter Streaming API
twitter_stream = TwitterStream(auth=oauth)

# Get a sample of the public data following through Twitter
iterator = twitter_stream.statuses.sample()

In [25]:
# the Twitter API to collect data for days or even longer. 
tweet_count = 1000
for tweet in iterator:
    tweet_count -= 1
    # Twitter Python Tool wraps the data returned by Twitter 
    # as a TwitterDictResponse object.
    # We convert it back to the JSON format to print/score
    print(json.dumps(tweet))
    
    # The command below will do pretty printing for JSON data, try it out
    # print json.dumps(tweet, indent=4)
       
    if tweet_count <= 0:
        break


{"created_at": "Thu Sep 21 21:16:41 +0000 2017", "id": 910976098506125312, "id_str": "910976098506125312", "text": "I told him I got rid of his bitch ass ugly dog \ud83e\udd37\ud83c\udffc\u200d\u2640\ufe0f https://t.co/unNT509wNc", "display_text_range": [0, 52], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1738473607, "id_str": "1738473607", "name": "YoungNatty\u264a\ufe0f", "screen_name": "love_ladykicks", "location": "Bay Area, CA", "url": null, "description": "25\u2728Self Made\u26a1\ufe0fCali\u27a1\ufe0fNC| Thee Gram: @_YoungNatty SnapThang: laddyycain", "translator_type": "none", "protected": false, "verified": false, "followers_count": 319, "friends_count": 632, "listed_count": 4, "favourites_count": 862, "statuses_count": 6937, "created_at": "Fri Sep 06 23:46:32 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909176330540933133/Rcf8leo5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909176330540933133/Rcf8leo5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1738473607/1500435431", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910976094446039040, "id_str": "910976094446039040", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "url": "https://t.co/unNT509wNc", "display_url": "pic.twitter.com/unNT509wNc", "expanded_url": "https://twitter.com/love_ladykicks/status/910976098506125312/photo/1", "type": "photo", "sizes": {"small": {"w": 382, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1125, "h": 2001, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976094446039040, "id_str": "910976094446039040", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7mxUMAAaulO.jpg", "url": "https://t.co/unNT509wNc", "display_url": "pic.twitter.com/unNT509wNc", "expanded_url": "https://twitter.com/love_ladykicks/status/910976098506125312/photo/1", "type": "photo", "sizes": {"small": {"w": 382, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1125, "h": 2001, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028601658"}
{"created_at": "Thu Sep 21 21:16:41 +0000 2017", "id": 910976098514726917, "id_str": "910976098514726917", "text": "\u00bfAburrido Quien? https://t.co/GDDsdaWAHU", "display_text_range": [0, 16], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 811779425876512768, "id_str": "811779425876512768", "name": "LuisYeg27", "screen_name": "LuisYeg27", "location": "Venezuela", "url": null, "description": "Hola Chabales :v", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4, "friends_count": 29, "listed_count": 0, "favourites_count": 5, "statuses_count": 9, "created_at": "Thu Dec 22 03:44:32 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/901588425798766592/G6oPPuH8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/901588425798766592/G6oPPuH8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/811779425876512768/1482378718", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910976080542093312, "id_str": "910976080542093312", "indices": [17, 40], "media_url": "http://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "url": "https://t.co/GDDsdaWAHU", "display_url": "pic.twitter.com/GDDsdaWAHU", "expanded_url": "https://twitter.com/LuisYeg27/status/910976098514726917/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 338, "resize": "fit"}, "small": {"w": 554, "h": 338, "resize": "fit"}, "medium": {"w": 554, "h": 338, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976080542093312, "id_str": "910976080542093312", "indices": [17, 40], "media_url": "http://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv6y-W0AAwNKH.jpg", "url": "https://t.co/GDDsdaWAHU", "display_url": "pic.twitter.com/GDDsdaWAHU", "expanded_url": "https://twitter.com/LuisYeg27/status/910976098514726917/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 338, "resize": "fit"}, "small": {"w": 554, "h": 338, "resize": "fit"}, "medium": {"w": 554, "h": 338, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028601660"}
{"created_at": "Thu Sep 21 21:16:41 +0000 2017", "id": 910976098535723014, "id_str": "910976098535723014", "text": "Reacting to XXxTentacion Hanging White Kid!! And His New Look Must Watch: https://t.co/BQkMpV0nTy via @YouTube", "source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 412036728, "id_str": "412036728", "name": "Samuel Bowman", "screen_name": "SAM_BOWMAN2", "location": null, "url": "https://m.youtube.com/user/eGNike2", "description": "IG: __trapwiz Snapchat: sambowshc2", "translator_type": "none", "protected": false, "verified": false, "followers_count": 394, "friends_count": 849, "listed_count": 0, "favourites_count": 269, "statuses_count": 339, "created_at": "Mon Nov 14 05:50:23 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_link_color": "D02B55", "profile_sidebar_border_color": "829D5E", "profile_sidebar_fill_color": "99CC33", "profile_text_color": "3E4415", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/784265760910692352/jb-NtS_7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784265760910692352/jb-NtS_7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/412036728/1457921198", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/BQkMpV0nTy", "expanded_url": "http://youtu.be/fA6f-vBkXTE?a", "display_url": "youtu.be/fA6f-vBkXTE?a", "indices": [74, 97]}], "user_mentions": [{"screen_name": "YouTube", "name": "YouTube", "id": 10228272, "id_str": "10228272", "indices": [102, 110]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028601665"}
{"delete": {"status": {"id": 201518905066397697, "id_str": "201518905066397697", "user_id": 355314147, "user_id_str": "355314147"}, "timestamp_ms": "1506028602245"}}
{"delete": {"status": {"id": 321181601264435200, "id_str": "321181601264435200", "user_id": 292739525, "user_id_str": "292739525"}, "timestamp_ms": "1506028602478"}}
{"delete": {"status": {"id": 819588832970604545, "id_str": "819588832970604545", "user_id": 2963792109, "user_id_str": "2963792109"}, "timestamp_ms": "1506028602608"}}
{"delete": {"status": {"id": 910968490059845637, "id_str": "910968490059845637", "user_id": 2867688255, "user_id_str": "2867688255"}, "timestamp_ms": "1506028602661"}}
{"delete": {"status": {"id": 910973317707857920, "id_str": "910973317707857920", "user_id": 3064086545, "user_id_str": "3064086545"}, "timestamp_ms": "1506028602671"}}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102696288256, "id_str": "910976102696288256", "text": "RT @hxyaw: Best thing about bringing this to GUQ is that we host over 40 nationalities. The diverse love for \ud83c\uddf6\ud83c\udde6 is prevalent\ud83c\udf0e\u2026 ", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 46899351, "id_str": "46899351", "name": "Neeshad V S", "screen_name": "ineeshadvs", "location": "Qatar", "url": "http://about.me/neeshad", "description": "Youth #Climate Advocate | Speaker | Co-founder @aycmqa | MIT @ClimateCoLab Fellow | @CliMates_ | @YouthClimateLab | @citizensclimate | @CoalitionWILD|", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3246, "friends_count": 466, "listed_count": 1257, "favourites_count": 58264, "statuses_count": 186052, "created_at": "Sat Jun 13 15:00:43 +0000 2009", "utc_offset": 14400, "time_zone": "Abu Dhabi", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9266CC", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/515898948729331712/ltaD6dX5.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/515898948729331712/ltaD6dX5.jpeg", "profile_background_tile": true, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "E3E2DE", "profile_text_color": "634047", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906194790408212480/e6ZCDlvu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906194790408212480/e6ZCDlvu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/46899351/1503420048", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:10:39 +0000 2017", "id": 910838684110413824, "id_str": "910838684110413824", "text": "Best thing about bringing this to GUQ is that we host over 40 nationalities. The diverse love for \ud83c\uddf6\ud83c\udde6 is prevalent\ud83c\udf0e\u2026 https://t.co/I35Imyq9If", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": true, "in_reply_to_status_id": 910776840721174529, "in_reply_to_status_id_str": "910776840721174529", "in_reply_to_user_id": 223104961, "in_reply_to_user_id_str": "223104961", "in_reply_to_screen_name": "hxyaw", "user": {"id": 223104961, "id_str": "223104961", "name": "Haya Al-Thani\ud83c\uddf6\ud83c\udde6", "screen_name": "hxyaw", "location": null, "url": "https://curiouscat.me/Hayabntalwaleed", "description": "\u0647\u064a\u0627 \u0628\u0646\u062a \u0627\u0644\u0648\u0644\u064a\u062f Avid reader, caffeinated thinker, opinionated speaker. Georgetown SFS. Harvard. Int'l Politics|Arab & Regional Studies. \u0623\u0645\u064a \u0645\u0631\u064a\u0645\u2764\ufe0f#\u062a\u0645\u064a\u0645_\u0627\u0644\u0645\u062c\u062f\ud83c\uddf6\ud83c\udde6", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3215, "friends_count": 527, "listed_count": 24, "favourites_count": 5776, "statuses_count": 45209, "created_at": "Sun Dec 05 12:02:55 +0000 2010", "utc_offset": 10800, "time_zone": "Kuwait", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_link_color": "8A0808", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910040855272202240/L0ECLeh5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910040855272202240/L0ECLeh5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/223104961/1505325703", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "Best thing about bringing this to GUQ is that we host over 40 nationalities. The diverse love for \ud83c\uddf6\ud83c\udde6 is prevalent\ud83c\udf0e\u2764\ufe0f #WorldStandsWithQatar https://t.co/f5i95zhzcy", "display_text_range": [0, 138], "entities": {"hashtags": [{"text": "WorldStandsWithQatar", "indices": [117, 138]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910838656755105792, "id_str": "910838656755105792", "indices": [139, 162], "media_url": "http://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "url": "https://t.co/f5i95zhzcy", "display_url": "pic.twitter.com/f5i95zhzcy", "expanded_url": "https://twitter.com/hxyaw/status/910838684110413824/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 900, "resize": "fit"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910838656755105792, "id_str": "910838656755105792", "indices": [139, 162], "media_url": "http://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPy7reVAAAAMUs.jpg", "url": "https://t.co/f5i95zhzcy", "display_url": "pic.twitter.com/f5i95zhzcy", "expanded_url": "https://twitter.com/hxyaw/status/910838684110413824/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 900, "resize": "fit"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}}, "quote_count": 0, "reply_count": 5, "retweet_count": 7, "favorite_count": 16, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/I35Imyq9If", "expanded_url": "https://twitter.com/i/web/status/910838684110413824", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [116, 139]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "hxyaw", "name": "Haya Al-Thani\ud83c\uddf6\ud83c\udde6", "id": 223104961, "id_str": "223104961", "indices": [3, 9]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602657"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102725599232, "id_str": "910976102725599232", "text": "RT @asummercold: \ud65c\ud65c \ud45c\uc815 \uc7a5\uc778 \ud83d\udd25\n\n170920 \uc18c\ub9ac\ubc14\ub2e4 \uc5b4\uc6cc\uc988 #\ud65c\ud65c FULL VER \ud83d\udcf9 https://t.co/WL823tetz5\n#\uc6cc\ub108\uc6d0 #\uc639\uc131\uc6b0 https://t.co/tkoYeA4sRB", "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M2)</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 898168649936130048, "id_str": "898168649936130048", "name": "\ubbf8\uc57c", "screen_name": "titipino23", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 10, "friends_count": 35, "listed_count": 0, "favourites_count": 12, "statuses_count": 163, "created_at": "Thu Aug 17 13:04:28 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 13:43:50 +0000 2017", "id": 910862133906128897, "id_str": "910862133906128897", "text": "\ud65c\ud65c \ud45c\uc815 \uc7a5\uc778 \ud83d\udd25\n\n170920 \uc18c\ub9ac\ubc14\ub2e4 \uc5b4\uc6cc\uc988 #\ud65c\ud65c FULL VER \ud83d\udcf9 https://t.co/WL823tetz5\n#\uc6cc\ub108\uc6d0 #\uc639\uc131\uc6b0 https://t.co/tkoYeA4sRB", "display_text_range": [0, 76], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 880808976819994624, "id_str": "880808976819994624", "name": "\uc5ec\ub984\uac10\uae30", "screen_name": "asummercold", "location": "\ud63c\uc790 \uc18c\uc18c\ud558\uac8c \uc553\ub294 \uacf3", "url": null, "description": "\uc5ec\ub984\uc740 \uc639\uc131\uc6b0\u2600, \ud658\uc790\ub294 \ub098\ud83d\ude37", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1567, "friends_count": 32, "listed_count": 66, "favourites_count": 35, "statuses_count": 190, "created_at": "Fri Jun 30 15:23:19 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "91D2FA", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905421757854580737/gJYizMGs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905421757854580737/gJYizMGs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/880808976819994624/1502372450", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 656, "favorite_count": 622, "entities": {"hashtags": [{"text": "\ud65c\ud65c", "indices": [28, 31]}, {"text": "\uc6cc\ub108\uc6d0", "indices": [67, 71]}, {"text": "\uc639\uc131\uc6b0", "indices": [72, 76]}], "urls": [{"url": "https://t.co/WL823tetz5", "expanded_url": "https://youtu.be/LXBJPD0Eqg8", "display_url": "youtu.be/LXBJPD0Eqg8", "indices": [43, 66]}], "user_mentions": [], "symbols": [], "media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [77, 100], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [77, 100], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 40340, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/pl/CLFsKPu08ONFpaiR.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/240x240/aCfNQw2DjSKjcyiq.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/720x720/thmnHYJ3ywGzDBeN.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/480x480/uC5uPXH-45xS2sy-.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\ud65c\ud65c", "indices": [45, 48]}, {"text": "\uc6cc\ub108\uc6d0", "indices": [84, 88]}, {"text": "\uc639\uc131\uc6b0", "indices": [89, 93]}], "urls": [{"url": "https://t.co/WL823tetz5", "expanded_url": "https://youtu.be/LXBJPD0Eqg8", "display_url": "youtu.be/LXBJPD0Eqg8", "indices": [60, 83]}], "user_mentions": [{"screen_name": "asummercold", "name": "\uc5ec\ub984\uac10\uae30", "id": 880808976819994624, "id_str": "880808976819994624", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [94, 117], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "source_status_id": 910862133906128897, "source_status_id_str": "910862133906128897", "source_user_id": 880808976819994624, "source_user_id_str": "880808976819994624"}]}, "extended_entities": {"media": [{"id": 910861491728826369, "id_str": "910861491728826369", "indices": [94, 117], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910861491728826369/pu/img/yl50Yg3MLcDvDHPw.jpg", "url": "https://t.co/tkoYeA4sRB", "display_url": "pic.twitter.com/tkoYeA4sRB", "expanded_url": "https://twitter.com/asummercold/status/910862133906128897/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 600, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "source_status_id": 910862133906128897, "source_status_id_str": "910862133906128897", "source_user_id": 880808976819994624, "source_user_id_str": "880808976819994624", "video_info": {"aspect_ratio": [1, 1], "duration_millis": 40340, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/pl/CLFsKPu08ONFpaiR.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/240x240/aCfNQw2DjSKjcyiq.mp4"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/720x720/thmnHYJ3ywGzDBeN.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910861491728826369/pu/vid/480x480/uC5uPXH-45xS2sy-.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028602664"}
{"delete": {"status": {"id": 910969723193626624, "id_str": "910969723193626624", "user_id": 2614596584, "user_id_str": "2614596584"}, "timestamp_ms": "1506028602773"}}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102709039104, "id_str": "910976102709039104", "text": "RT @Teddyt00asian: @iamtheanswer_ Anytime \u270a\ufe0f", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1447387310, "id_str": "1447387310", "name": "zo", "screen_name": "iamtheanswer_", "location": null, "url": "http://finessing.com", "description": "vs6 is iconic", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1927, "friends_count": 804, "listed_count": 9, "favourites_count": 17356, "statuses_count": 45142, "created_at": "Tue May 21 22:13:48 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909528111527661568/fU0u_0BV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909528111527661568/fU0u_0BV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1447387310/1505738359", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:00:27 +0000 2017", "id": 910972013191290886, "id_str": "910972013191290886", "text": "@iamtheanswer_ Anytime \u270a\ufe0f", "display_text_range": [15, 25], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910965160763957254, "in_reply_to_status_id_str": "910965160763957254", "in_reply_to_user_id": 1447387310, "in_reply_to_user_id_str": "1447387310", "in_reply_to_screen_name": "iamtheanswer_", "user": {"id": 164596634, "id_str": "164596634", "name": "teddy", "screen_name": "Teddyt00asian", "location": null, "url": null, "description": "24. Navy vet. \u270a\ufe0f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3304, "friends_count": 2880, "listed_count": 15, "favourites_count": 11650, "statuses_count": 210027, "created_at": "Fri Jul 09 07:29:55 +0000 2010", "utc_offset": -18000, "time_zone": "Quito", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000043759064/29df881c7318a26a2b1bbebb8a8ba21c.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000043759064/29df881c7318a26a2b1bbebb8a8ba21c.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908069701556883457/A9qp2t3j_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908069701556883457/A9qp2t3j_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/164596634/1503331480", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "iamtheanswer_", "name": "zo", "id": 1447387310, "id_str": "1447387310", "indices": [0, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Teddyt00asian", "name": "teddy", "id": 164596634, "id_str": "164596634", "indices": [3, 17]}, {"screen_name": "iamtheanswer_", "name": "zo", "id": 1447387310, "id_str": "1447387310", "indices": [19, 33]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102721564673, "id_str": "910976102721564673", "text": "RT @casaliteratura: Este s\u00e1bado 23 de setiembre, a las 10:30 a.m., tendremos un recorrido dirigido a docentes en nuestra exposici\u00f3n Ama\u2026 ", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 734108081467064320, "id_str": "734108081467064320", "name": "Ag\u00e9ndalo Lima", "screen_name": "agendalo_pe", "location": "Lima, Peru", "url": null, "description": "Ag\u00e9ndalo Lima nace con la intenci\u00f3n de ayudar a las personas a encontrar un lugar de esparcimiento. Hacemos RETWEET a tus eventos !!!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 286, "friends_count": 57, "listed_count": 11, "favourites_count": 698, "statuses_count": 2563, "created_at": "Sat May 21 19:46:20 +0000 2016", "utc_offset": -18000, "time_zone": "Bogota", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/734110987352199170/6BUr6Ro1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734110987352199170/6BUr6Ro1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/734108081467064320/1463862026", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:01:08 +0000 2017", "id": 910972185849864194, "id_str": "910972185849864194", "text": "Este s\u00e1bado 23 de setiembre, a las 10:30 a.m., tendremos un recorrido dirigido a docentes en nuestra exposici\u00f3n Ama\u2026 https://t.co/XBRJBtZN6F", "display_text_range": [0, 140], "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 107751029, "id_str": "107751029", "name": "Casa de Literatura", "screen_name": "casaliteratura", "location": "Jr. Ancash 207, Lima", "url": "http://twittercounter.com/casaliteratura", "description": "La Casa de la Literatura Peruana es un centro cultural dedicado a provocar la experiencia literaria en la ciudadan\u00eda. Entrada libre a todas las actividades.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 22719, "friends_count": 1437, "listed_count": 283, "favourites_count": 1468, "statuses_count": 21391, "created_at": "Sat Jan 23 16:15:02 +0000 2010", "utc_offset": -18000, "time_zone": "Lima", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/813407458714669057/Ms4rMXBs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/813407458714669057/Ms4rMXBs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/107751029/1488589669", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "Este s\u00e1bado 23 de setiembre, a las 10:30 a.m., tendremos un recorrido dirigido a docentes en nuestra exposici\u00f3n Amauta. #IngresoLibre https://t.co/atH3TiGuLP", "display_text_range": [0, 133], "entities": {"hashtags": [{"text": "IngresoLibre", "indices": [120, 133]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910972182746075137, "id_str": "910972182746075137", "indices": [134, 157], "media_url": "http://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "url": "https://t.co/atH3TiGuLP", "display_url": "pic.twitter.com/atH3TiGuLP", "expanded_url": "https://twitter.com/casaliteratura/status/910972185849864194/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 844, "h": 726, "resize": "fit"}, "medium": {"w": 844, "h": 726, "resize": "fit"}, "small": {"w": 680, "h": 585, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910972182746075137, "id_str": "910972182746075137", "indices": [134, 157], "media_url": "http://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRsX6jXkAEuPPY.jpg", "url": "https://t.co/atH3TiGuLP", "display_url": "pic.twitter.com/atH3TiGuLP", "expanded_url": "https://twitter.com/casaliteratura/status/910972185849864194/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 844, "h": 726, "resize": "fit"}, "medium": {"w": 844, "h": 726, "resize": "fit"}, "small": {"w": 680, "h": 585, "resize": "fit"}}}]}}, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 2, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/XBRJBtZN6F", "expanded_url": "https://twitter.com/i/web/status/910972185849864194", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "casaliteratura", "name": "Casa de Literatura", "id": 107751029, "id_str": "107751029", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602663"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102696439808, "id_str": "910976102696439808", "text": "RT @vsvp6ix: https://t.co/BfTMHh0wYI", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3338061507, "id_str": "3338061507", "name": "Renato Almeida", "screen_name": "renato10w", "location": "4400", "url": null, "description": "insta- renatoalmeidaw10", "translator_type": "none", "protected": false, "verified": false, "followers_count": 267, "friends_count": 152, "listed_count": 2, "favourites_count": 6077, "statuses_count": 11431, "created_at": "Sun Jun 21 02:12:18 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/889262300099739649/-YqEJ8jV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/889262300099739649/-YqEJ8jV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3338061507/1505850584", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:33:54 +0000 2017", "id": 910950230115471360, "id_str": "910950230115471360", "text": "https://t.co/BfTMHh0wYI", "display_text_range": [0, 0], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3035166554, "id_str": "3035166554", "name": "ADV.6iX", "screen_name": "vsvp6ix", "location": "mg", "url": "https://open.spotify.com/user/adv.6ix/playlist/6801raWAJqBBijX2JDtrU6", "description": "Rap, Fotos, Aleat\u00f3rias\u200b, V\u00eddeos, Gifs, Frases. http://facebook.com/asap.6ix/ https://www.instagram.com/asap.6ix/", "translator_type": "none", "protected": false, "verified": false, "followers_count": 112186, "friends_count": 315, "listed_count": 918, "favourites_count": 1538, "statuses_count": 58491, "created_at": "Sat Feb 21 20:22:28 +0000 2015", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ABB8C2", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/579628846757990400/dc__eEBU.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/579628846757990400/dc__eEBU.jpg", "profile_background_tile": true, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/799272093561004032/hkmNV5UC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/799272093561004032/hkmNV5UC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3035166554/1502314249", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 0, "retweet_count": 112, "favorite_count": 157, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [0, 23], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": true, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "vsvp6ix", "name": "ADV.6iX", "id": 3035166554, "id_str": "3035166554", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}, "source_status_id": 910950230115471360, "source_status_id_str": "910950230115471360", "source_user_id": 3035166554, "source_user_id_str": "3035166554"}]}, "extended_entities": {"media": [{"id": 910950216265818112, "id_str": "910950216265818112", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRYZTCW4AAlCz9.jpg", "url": "https://t.co/BfTMHh0wYI", "display_url": "pic.twitter.com/BfTMHh0wYI", "expanded_url": "https://twitter.com/vsvp6ix/status/910950230115471360/photo/1", "type": "photo", "sizes": {"small": {"w": 504, "h": 680, "resize": "fit"}, "medium": {"w": 540, "h": 728, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 540, "h": 728, "resize": "fit"}}, "source_status_id": 910950230115471360, "source_status_id_str": "910950230115471360", "source_user_id": 3035166554, "source_user_id_str": "3035166554"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028602657"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102708973569, "id_str": "910976102708973569", "text": "@rivalwally junkrat ain\u2019t even that bad. now WINSTON", "display_text_range": [12, 52], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910960246784499713, "in_reply_to_status_id_str": "910960246784499713", "in_reply_to_user_id": 1325566614, "in_reply_to_user_id_str": "1325566614", "in_reply_to_screen_name": "rivalwally", "user": {"id": 2334775510, "id_str": "2334775510", "name": "liam", "screen_name": "aIexisneiers", "location": null, "url": null, "description": "i went to an urgent care around here and they told me i had chlamydia one time.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 313, "friends_count": 321, "listed_count": 16, "favourites_count": 64920, "statuses_count": 17671, "created_at": "Mon Feb 10 00:58:48 +0000 2014", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "8D8B96", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909925723481264130/Zf7PJfi9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909925723481264130/Zf7PJfi9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2334775510/1495500197", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "rivalwally", "name": "DJ HENTAI", "id": 1325566614, "id_str": "1325566614", "indices": [0, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102713233408, "id_str": "910976102713233408", "text": "@futureofphilly I didn't know the slide rule can also be to the AHL for a 19 year eligible", "display_text_range": [16, 90], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910972738306740226, "in_reply_to_status_id_str": "910972738306740226", "in_reply_to_user_id": 754694767620030464, "in_reply_to_user_id_str": "754694767620030464", "in_reply_to_screen_name": "futureofphilly", "user": {"id": 134149281, "id_str": "134149281", "name": "Tim M.", "screen_name": "Flyersguru", "location": "South Jersey", "url": "http://www.FlyersAutographDatabase.com", "description": "Owner & Operator of the Flyers Autograph Database. Talking Flyers News & Rumors. I also talk Eagles. Hockey Autograph eBay store owner: https://t.co/AfodD2ezdx", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1235, "friends_count": 469, "listed_count": 66, "favourites_count": 2, "statuses_count": 59383, "created_at": "Sat Apr 17 15:45:09 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/93020644/FlyersLogo.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/93020644/FlyersLogo.png", "profile_background_tile": true, "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/576821776891654144/Mp7F075I_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/576821776891654144/Mp7F075I_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/134149281/1405269572", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "futureofphilly", "name": "Flyers Prospects", "id": 754694767620030464, "id_str": "754694767620030464", "indices": [0, 15]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602661"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102725816320, "id_str": "910976102725816320", "text": "RT @jsm2272: Wow! A whole site on Visual Patterns (more than 200 of them!) https://t.co/z31Bh429tq https://t.co/Trz7SjWFbe", "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Lite</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1469315990, "id_str": "1469315990", "name": "NTU Primary Maths", "screen_name": "NTUPriMaths", "location": "Nottingham, UK.", "url": null, "description": "Mathematical provocations, possibilities and delights\r\nPrimary Maths team at Nottingham Trent University \r\n(primary teacher education) views our own", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1034, "friends_count": 22, "listed_count": 70, "favourites_count": 951, "statuses_count": 4265, "created_at": "Thu May 30 09:10:22 +0000 2013", "utc_offset": -36000, "time_zone": "Hawaii", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/570881013836816384/6TgXUKk0_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/570881013836816384/6TgXUKk0_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1469315990/1424944945", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 00:45:48 +0000 2017", "id": 910666337361547270, "id_str": "910666337361547270", "text": "Wow! A whole site on Visual Patterns (more than 200 of them!) https://t.co/z31Bh429tq https://t.co/Trz7SjWFbe", "display_text_range": [0, 85], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 214986803, "id_str": "214986803", "name": "Julie Millan", "screen_name": "jsm2272", "location": "Toronto, Canada", "url": "http://JulieMillan.ca", "description": "Teacher in the Toronto DSB | Google Innovative Educator | Apple Distinguished Educator | http://www.juliemillan.ca | #TDSB #GoogleEI #FlipgridFever #ADE2017", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6805, "friends_count": 5803, "listed_count": 366, "favourites_count": 9462, "statuses_count": 9907, "created_at": "Fri Nov 12 18:35:37 +0000 2010", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/775080225822519296/eOQ4Y1st_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/775080225822519296/eOQ4Y1st_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/214986803/1453077505", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 5, "reply_count": 3, "retweet_count": 12, "favorite_count": 40, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z31Bh429tq", "expanded_url": "http://www.visualpatterns.org/", "display_url": "visualpatterns.org", "indices": [62, 85]}], "user_mentions": [], "symbols": [], "media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [86, 109], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [86, 109], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z31Bh429tq", "expanded_url": "http://www.visualpatterns.org/", "display_url": "visualpatterns.org", "indices": [75, 98]}], "user_mentions": [{"screen_name": "jsm2272", "name": "Julie Millan", "id": 214986803, "id_str": "214986803", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}, "source_status_id": 910666337361547270, "source_status_id_str": "910666337361547270", "source_user_id": 214986803, "source_user_id_str": "214986803"}]}, "extended_entities": {"media": [{"id": 910666089842982913, "id_str": "910666089842982913", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNV-9oVwAEF8Bw.jpg", "url": "https://t.co/Trz7SjWFbe", "display_url": "pic.twitter.com/Trz7SjWFbe", "expanded_url": "https://twitter.com/jsm2272/status/910666337361547270/photo/1", "type": "photo", "sizes": {"large": {"w": 1138, "h": 868, "resize": "fit"}, "small": {"w": 680, "h": 519, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 868, "resize": "fit"}}, "source_status_id": 910666337361547270, "source_status_id_str": "910666337361547270", "source_user_id": 214986803, "source_user_id_str": "214986803"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602664"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102721613825, "id_str": "910976102721613825", "text": "RT @hsercan_: A Spor bile yay\u0131n\u0131 kesti, Ali Ko\u00e7'un konu\u015fmas\u0131n\u0131 yay\u0131nl\u0131yor. FB TV g\u00f6rmezden gelmeye devam ediyor.", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2666185049, "id_str": "2666185049", "name": "Bize HerG\u00fcn 15Temmuz", "screen_name": "3f99459b5fc6495", "location": "izmir", "url": null, "description": "bir uyan\u0131\u015f bir dirili\u015f bir yeniden do\u011fu\u015f bir besmele \u00e7eki\u015fin davas\u0131d\u0131r bu", "translator_type": "none", "protected": false, "verified": false, "followers_count": 799, "friends_count": 930, "listed_count": 0, "favourites_count": 1194, "statuses_count": 1580, "created_at": "Thu Jul 03 02:30:47 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907173124868857856/0jtpXmnr_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907173124868857856/0jtpXmnr_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2666185049/1475847444", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:13:18 +0000 2017", "id": 910960146922262528, "id_str": "910960146922262528", "text": "A Spor bile yay\u0131n\u0131 kesti, Ali Ko\u00e7'un konu\u015fmas\u0131n\u0131 yay\u0131nl\u0131yor. FB TV g\u00f6rmezden gelmeye devam ediyor.", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 138357336, "id_str": "138357336", "name": "Sercan Okur", "screen_name": "hsercan_", "location": "Kartal, \u0130stanbul", "url": "http://www.kuzeystar.com", "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 2294, "friends_count": 463, "listed_count": 5, "favourites_count": 291, "statuses_count": 20185, "created_at": "Thu Apr 29 09:40:10 +0000 2010", "utc_offset": 10800, "time_zone": "Istanbul", "geo_enabled": true, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ACDED6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000180797873/KvbLv_Jv.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000180797873/KvbLv_Jv.jpeg", "profile_background_tile": true, "profile_link_color": "038543", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907345967422337024/FL_dXL9O_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907345967422337024/FL_dXL9O_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/138357336/1485034078", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 1, "retweet_count": 45, "favorite_count": 124, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "tr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "hsercan_", "name": "Sercan Okur", "id": 138357336, "id_str": "138357336", "indices": [3, 12]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "tr", "timestamp_ms": "1506028602663"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102734147585, "id_str": "910976102734147585", "text": "RT @JeffParshley: I only want people around who teach me the importance of growth and who encourage and support me through the hardships of\u2026", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 894585840361365504, "id_str": "894585840361365504", "name": "CME \ud83d\udc8b", "screen_name": "Goldenncmee", "location": "Los Angeles, CA", "url": null, "description": "God First\ud83d\ude4f\ud83c\udffd Live Love Laugh \ud83e\udd8b\u2728", "translator_type": "none", "protected": false, "verified": false, "followers_count": 133, "friends_count": 113, "listed_count": 0, "favourites_count": 449, "statuses_count": 1334, "created_at": "Mon Aug 07 15:47:39 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900592655121494016/gdLtWf8J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900592655121494016/gdLtWf8J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/894585840361365504/1503553050", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:17:46 +0000 2017", "id": 910961269208899584, "id_str": "910961269208899584", "text": "I only want people around who teach me the importance of growth and who encourage and support me through the hardships of my journey in life", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 30576467, "id_str": "30576467", "name": "Jeff Parshley", "screen_name": "JeffParshley", "location": "Los Angeles", "url": "http://www.noh8campaign.com", "description": "NOH8 Campaign Co-Founder", "translator_type": "none", "protected": false, "verified": true, "followers_count": 210061, "friends_count": 189615, "listed_count": 777, "favourites_count": 895, "statuses_count": 6749, "created_at": "Sun Apr 12 01:57:29 +0000 2009", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/319790413/JEFFPARSHLEY_twitterbg.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/319790413/JEFFPARSHLEY_twitterbg.jpg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/711252611849068544/yhjxMi7T_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/711252611849068544/yhjxMi7T_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/30576467/1451432816", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 0, "retweet_count": 34, "favorite_count": 86, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "JeffParshley", "name": "Jeff Parshley", "id": 30576467, "id_str": "30576467", "indices": [3, 16]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602666"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102713249792, "id_str": "910976102713249792", "text": "Lavei meu cabelo hj, d\u00e1 m\u00f3 al\u00edvio", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 842389215895797762, "id_str": "842389215895797762", "name": "\ud83c\udf51", "screen_name": "PORRAlohanne", "location": "No seu cora\u00e7\u00e3o", "url": null, "description": "17 anos/ solteira/ flamenguista \u2764\u2665\n\n\n\n\n\n\n\n\n\n\n\n\n\nA vida \u00e9 uma loucura, e no final todos morem!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 536, "friends_count": 281, "listed_count": 1, "favourites_count": 349, "statuses_count": 7086, "created_at": "Thu Mar 16 14:56:54 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910694352581775360/Hfl8MVRb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910694352581775360/Hfl8MVRb_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028602661"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729945088, "id_str": "910976102729945088", "text": "@LaGloriosaTuiit prob\u00e9 la beta, est\u00e1 muy buena.ya los ped\u00ed online pq ambos f\u00edsico salen un huevo.", "display_text_range": [17, 97], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": 910975485785624576, "in_reply_to_status_id_str": "910975485785624576", "in_reply_to_user_id": 1526249761, "in_reply_to_user_id_str": "1526249761", "in_reply_to_screen_name": "LaGloriosaTuiit", "user": {"id": 1321608510, "id_str": "1321608510", "name": "doble a", "screen_name": "PicanteAlicante", "location": "Ciudad Aut\u00f3noma de Buenos Aire", "url": null, "description": "Cuervo recalcitrante, a veces quiero todo y a la vez no quiero nada.. PseudoSoltero. #HastaLaVictoriaSiempre", "translator_type": "none", "protected": false, "verified": false, "followers_count": 23, "friends_count": 151, "listed_count": 0, "favourites_count": 673, "statuses_count": 743, "created_at": "Tue Apr 02 02:58:53 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3464895828/e6e79696bcec75cfb56047fcb1f3de75_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3464895828/e6e79696bcec75cfb56047fcb1f3de75_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1321608510/1502595545", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LaGloriosaTuiit", "name": "LaGloriosaTuit", "id": 1526249761, "id_str": "1526249761", "indices": [0, 16]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102708981760, "id_str": "910976102708981760", "text": "Las blumettra en todo el concurso #Gala2GH https://t.co/B14ZObAavX", "display_text_range": [0, 42], "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Lite</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 755522024, "id_str": "755522024", "name": "Mal\u00faPamplona :)", "screen_name": "Lauraaa_rm", "location": "ESPA\u00d1A", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 2310, "friends_count": 464, "listed_count": 18, "favourites_count": 33361, "statuses_count": 120076, "created_at": "Mon Aug 13 17:30:14 +0000 2012", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/866249709026988033/p8pkLrbj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/866249709026988033/p8pkLrbj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/755522024/1464626945", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910972661169360897, "quoted_status_id_str": "910972661169360897", "quoted_status": {"created_at": "Thu Sep 21 21:03:02 +0000 2017", "id": 910972661169360897, "id_str": "910972661169360897", "text": "Yo cuando Shippo algo https://t.co/D2OoOwMAhy", "display_text_range": [0, 21], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4904793082, "id_str": "4904793082", "name": "\ud83d\udd96\ud83d\udc2f\ud83e\udd81\ud83c\udf51", "screen_name": "lau_matamoros", "location": "Barcelona, Espa\u00f1a", "url": "https://youtu.be/nU5I5oRK-tc", "description": "TEORIA DEL ESPEJO | 41,92% |\u2764\ufe0f #BlumeTv #PLL", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1669, "friends_count": 284, "listed_count": 7, "favourites_count": 50956, "statuses_count": 48385, "created_at": "Sat Feb 13 13:31:03 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/885872917422235648/SjOFzjxc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/885872917422235648/SjOFzjxc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4904793082/1502435977", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 1, "retweet_count": 7, "favorite_count": 11, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910972652034170880, "id_str": "910972652034170880", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "url": "https://t.co/D2OoOwMAhy", "display_url": "pic.twitter.com/D2OoOwMAhy", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897/photo/1", "type": "photo", "sizes": {"medium": {"w": 554, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 382, "resize": "fit"}, "small": {"w": 554, "h": 382, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910972652034170880, "id_str": "910972652034170880", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRszOyXoAA5b5C.jpg", "url": "https://t.co/D2OoOwMAhy", "display_url": "pic.twitter.com/D2OoOwMAhy", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897/photo/1", "type": "photo", "sizes": {"medium": {"w": 554, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 554, "h": 382, "resize": "fit"}, "small": {"w": 554, "h": 382, "resize": "fit"}}}, {"id": 910972652063469570, "id_str": "910972652063469570", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKRszO5WsAINoMf.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRszO5WsAINoMf.jpg", "url": "https://t.co/D2OoOwMAhy", "display_url": "pic.twitter.com/D2OoOwMAhy", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 450, "resize": "fit"}, "medium": {"w": 1200, "h": 795, "resize": "fit"}, "large": {"w": 1738, "h": 1151, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "Gala2GH", "indices": [34, 42]}], "urls": [{"url": "https://t.co/B14ZObAavX", "expanded_url": "https://twitter.com/lau_matamoros/status/910972661169360897", "display_url": "twitter.com/lau_matamoros/\u2026", "indices": [43, 66]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102730002434, "id_str": "910976102730002434", "text": "RT @Le_M__: \"Mon tr\u00e9sor ? Je vous le laisse si vous voulez. Trouvez le ! Je l'ai laissez quelque part dans ce monde.\" - Liliane Bettencourt.", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 908114192380678144, "id_str": "908114192380678144", "name": "Herviin BG", "screen_name": "HerviinB", "location": "Guin\u00e9e", "url": null, "description": "ajouter mon snap : herviin92i", "translator_type": "none", "protected": false, "verified": false, "followers_count": 20, "friends_count": 174, "listed_count": 0, "favourites_count": 0, "statuses_count": 125, "created_at": "Wed Sep 13 23:44:30 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908117974573305857/1OhaTf0j_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908117974573305857/1OhaTf0j_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:50:26 +0000 2017", "id": 910969490401320960, "id_str": "910969490401320960", "text": "\"Mon tr\u00e9sor ? Je vous le laisse si vous voulez. Trouvez le ! Je l'ai laissez quelque part dans ce monde.\" - Liliane Bettencourt.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2650614322, "id_str": "2650614322", "name": "Le \u2133", "screen_name": "Le_M__", "location": null, "url": null, "description": "J'parle dans ta t\u00eate comme le professeur Xavier", "translator_type": "none", "protected": false, "verified": false, "followers_count": 26470, "friends_count": 104, "listed_count": 192, "favourites_count": 0, "statuses_count": 2897, "created_at": "Sat Jun 28 16:38:01 +0000 2014", "utc_offset": 10800, "time_zone": "Athens", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/843113486012076033/osGSbnlI_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/843113486012076033/osGSbnlI_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2650614322/1460319397", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 10, "reply_count": 3, "retweet_count": 341, "favorite_count": 191, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Le_M__", "name": "Le \u2133", "id": 2650614322, "id_str": "2650614322", "indices": [3, 10]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "fr", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102725767169, "id_str": "910976102725767169", "text": "@richietcziers @damndylan how", "display_text_range": [26, 29], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910976000619614208, "in_reply_to_status_id_str": "910976000619614208", "in_reply_to_user_id": 2949278714, "in_reply_to_user_id_str": "2949278714", "in_reply_to_screen_name": "richietcziers", "user": {"id": 762167111800135680, "id_str": "762167111800135680", "name": "\u3164\u064b", "screen_name": "Iucaszuman", "location": null, "url": null, "description": "80swyatt @richietcziers", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3181, "friends_count": 95, "listed_count": 58, "favourites_count": 78252, "statuses_count": 30874, "created_at": "Sun Aug 07 06:02:54 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "FAB81E", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910703542289215488/OEeHq5G8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910703542289215488/OEeHq5G8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/762167111800135680/1505963281", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "richietcziers", "name": "mel", "id": 2949278714, "id_str": "2949278714", "indices": [0, 14]}, {"screen_name": "damndylan", "name": "meghan 3", "id": 2952500073, "id_str": "2952500073", "indices": [15, 25]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028602664"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102730002432, "id_str": "910976102730002432", "text": "RT @SiyasetArsivi: Alparslan T\u00fcrke\u015f ve Muhsin Yaz\u0131c\u0131o\u011flu https://t.co/RO0TNLce37", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1016340588, "id_str": "1016340588", "name": "Mesud Reis", "screen_name": "MesudReis", "location": "Trabzon, T\u00fcrkiye", "url": null, "description": "Misir unundan bol teraya\u011fli bir maliyeci.\n\nBazen yazar'\u0131m baz\u0131 baz\u0131 sus. \n\nBilema Trabzon \u015fivesi...\n\n'Hokkas\u0131zDivit'\n\nAsla y\u0131lmak olmayacakt\u0131r. Bir T\u00fcrk...", "translator_type": "none", "protected": false, "verified": false, "followers_count": 292, "friends_count": 394, "listed_count": 0, "favourites_count": 1296, "statuses_count": 7589, "created_at": "Mon Dec 17 00:15:16 +0000 2012", "utc_offset": 10800, "time_zone": "Athens", "geo_enabled": false, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "4A913C", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/790195908/25707fd6c69e8d08426208c39a5e8430.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/790195908/25707fd6c69e8d08426208c39a5e8430.jpeg", "profile_background_tile": true, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/790680079986720768/_eVu4KAB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/790680079986720768/_eVu4KAB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1016340588/1451261574", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:00:04 +0000 2017", "id": 910926619115753473, "id_str": "910926619115753473", "text": "Alparslan T\u00fcrke\u015f ve Muhsin Yaz\u0131c\u0131o\u011flu https://t.co/RO0TNLce37", "display_text_range": [0, 37], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2633628992, "id_str": "2633628992", "name": "Siyasi Foto\u011fraflar", "screen_name": "SiyasetArsivi", "location": "\u0130stanbul, T\u00fcrkiye", "url": null, "description": "Viral reklam i\u00e7in webbangz@gmail.com", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 146067, "friends_count": 252, "listed_count": 141, "favourites_count": 1, "statuses_count": 3173, "created_at": "Sat Jul 12 23:42:10 +0000 2014", "utc_offset": 10800, "time_zone": "Istanbul", "geo_enabled": false, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/683303542644281344/N1KHqyRB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683303542644281344/N1KHqyRB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2633628992/1451747037", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 2, "retweet_count": 38, "favorite_count": 255, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [38, 61], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "tr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "SiyasetArsivi", "name": "Siyasi Foto\u011fraflar", "id": 2633628992, "id_str": "2633628992", "indices": [3, 17]}], "symbols": [], "media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}, "source_status_id": 910926619115753473, "source_status_id_str": "910926619115753473", "source_user_id": 2633628992, "source_user_id_str": "2633628992"}]}, "extended_entities": {"media": [{"id": 910804816959561728, "id_str": "910804816959561728", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKPUJ8aW4AAsLeK.jpg", "url": "https://t.co/RO0TNLce37", "display_url": "pic.twitter.com/RO0TNLce37", "expanded_url": "https://twitter.com/SiyasetArsivi/status/910926619115753473/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 872, "resize": "fit"}, "large": {"w": 1200, "h": 872, "resize": "fit"}, "small": {"w": 680, "h": 494, "resize": "fit"}}, "source_status_id": 910926619115753473, "source_status_id_str": "910926619115753473", "source_user_id": 2633628992, "source_user_id_str": "2633628992"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "tr", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102721626113, "id_str": "910976102721626113", "text": "RT @iloveputarias: queria ser igual aquelas pessoas que come\u00e7a a beber na quinta e s\u00f3 para no domingo", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2157724914, "id_str": "2157724914", "name": "tique", "screen_name": "Patrick__Mug", "location": null, "url": null, "description": "snap: patrickmug", "translator_type": "none", "protected": false, "verified": false, "followers_count": 484, "friends_count": 304, "listed_count": 0, "favourites_count": 752, "statuses_count": 5938, "created_at": "Sat Oct 26 23:42:54 +0000 2013", "utc_offset": -7200, "time_zone": "Mid-Atlantic", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "080808", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/435148658766389248/TV9k0qgV.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/435148658766389248/TV9k0qgV.png", "profile_background_tile": true, "profile_link_color": "18BEDB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906646707114577920/Xw1DhD5F_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906646707114577920/Xw1DhD5F_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2157724914/1496747915", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:57:57 +0000 2017", "id": 910971381730471938, "id_str": "910971381730471938", "text": "queria ser igual aquelas pessoas que come\u00e7a a beber na quinta e s\u00f3 para no domingo", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3296275677, "id_str": "3296275677", "name": "(+18)", "screen_name": "iloveputarias", "location": "Snapchat: iloveputarias", "url": "http://camerahot.com", "description": "Bem-vindo \u00e0 conta mais sexual do Twitter. (apenas para +18, conte\u00fado adulto) Publicidade: iloveputarias@outlook.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 986742, "friends_count": 154, "listed_count": 2274, "favourites_count": 587, "statuses_count": 2125, "created_at": "Sun May 24 09:26:22 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/768254668778643456/I-hQDg8Q_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/768254668778643456/I-hQDg8Q_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3296275677/1505781758", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": [58576769], "is_quote_status": false, "quote_count": 233, "reply_count": 26, "retweet_count": 1326, "favorite_count": 1423, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "iloveputarias", "name": "(+18)", "id": 3296275677, "id_str": "3296275677", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028602663"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729961472, "id_str": "910976102729961472", "text": "Don't know whether to update to iOS 11 or nah #iOS11", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 857217571724066817, "id_str": "857217571724066817", "name": "kdramabride", "screen_name": "ambiguous_920", "location": null, "url": null, "description": "k-\ud83c\uddf0\ud83c\uddf7 | 20 | Talent: Patiently waiting for new kdrama episodes \ud83d\ude02\ud83d\ude4c\ud83c\udffb | Jess&Gabriel | Jess \u2764\ufe0f x6", "translator_type": "none", "protected": false, "verified": false, "followers_count": 32, "friends_count": 37, "listed_count": 0, "favourites_count": 363, "statuses_count": 440, "created_at": "Wed Apr 26 12:59:30 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904762069513371652/LrEJK2uB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904762069513371652/LrEJK2uB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/857217571724066817/1504547064", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "iOS11", "indices": [46, 52]}], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102708994049, "id_str": "910976102708994049", "text": "@SnowAndBeach I think it will . When is it out !?", "display_text_range": [14, 49], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975738718932992, "in_reply_to_status_id_str": "910975738718932992", "in_reply_to_user_id": 733003963994415108, "in_reply_to_user_id_str": "733003963994415108", "in_reply_to_screen_name": "SnowAndBeach", "user": {"id": 882158575631708160, "id_str": "882158575631708160", "name": "Liam", "screen_name": "liamJwhite23", "location": "Ireland", "url": null, "description": "Enjoy your own company. It's okay to go shopping alone, Go to the movies alone, Go out to eat alone. Be happy with yourself. nursing is my passion \ud83d\udc68\ud83c\udffb\u200d\u2695\ufe0f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 457, "friends_count": 2340, "listed_count": 5, "favourites_count": 5545, "statuses_count": 2937, "created_at": "Tue Jul 04 08:46:08 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900468005628518400/PZgIBw0-_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900468005628518400/PZgIBw0-_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/882158575631708160/1505661130", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "SnowAndBeach", "name": "Grant\ud83c\udf83\ud83d\udc7b", "id": 733003963994415108, "id_str": "733003963994415108", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602660"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102696407040, "id_str": "910976102696407040", "text": "PQP... https://t.co/g4QA5TrJx7", "display_text_range": [0, 6], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 392718175, "id_str": "392718175", "name": "Dom \u27b3\u2742", "screen_name": "valentimdom", "location": null, "url": "http://about.me/DomValentim", "description": "I`m #Rocker \u2620 \u221e #Rugby & #Archery \u27b3\u2742 #Crossfit \ud83c\udfcb\ud83c\udffb\u200d\u2640\ufe0f #Kendo \u2694\ufe0f  #Photografy \ud83d\udc7b#Snapchat: valentim.dom", "translator_type": "none", "protected": false, "verified": false, "followers_count": 802, "friends_count": 953, "listed_count": 18, "favourites_count": 13458, "statuses_count": 23563, "created_at": "Mon Oct 17 13:31:40 +0000 2011", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C3C5EB", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/566239711304245248/SXeagyaa.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/566239711304245248/SXeagyaa.jpeg", "profile_background_tile": true, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909479753232666625/jokOdKaW_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909479753232666625/jokOdKaW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/392718175/1500766064", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910654178233606144, "quoted_status_id_str": "910654178233606144", "quoted_status": {"created_at": "Wed Sep 20 23:57:29 +0000 2017", "id": 910654178233606144, "id_str": "910654178233606144", "text": "PEGAREMOS EM ARMAS\nIREMOS \u00c0S RUAS\n\nINACEIT\u00c1VEL https://t.co/S3NGO5eesk", "display_text_range": [0, 46], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter for  iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 7850072, "id_str": "7850072", "name": "Joleana", "screen_name": "juzao", "location": "S\u00e3o Paulo, Brasil", "url": "http://www.instagram.com/juzao", "description": "de dia trabalho no @TwitterBrasil e \u00e0 noite combato o crime pelas ruas da metr\u00f3pole (contato@juzao.com.br)", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 188110, "friends_count": 1207, "listed_count": 612, "favourites_count": 30335, "statuses_count": 118837, "created_at": "Tue Jul 31 15:19:37 +0000 2007", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "B38CC2", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/487009908705853442/MOvOMxP_.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/487009908705853442/MOvOMxP_.jpeg", "profile_background_tile": true, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "B7C9C7", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/654285359984046080/Yzl9qon__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/654285359984046080/Yzl9qon__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/7850072/1447362622", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "68e019afec7d0ba5", "url": "https://api.twitter.com/1.1/geo/id/68e019afec7d0ba5.json", "place_type": "city", "name": "S\u00e3o Paulo", "full_name": "S\u00e3o Paulo, Brasil", "country_code": "BR", "country": "Brasil", "bounding_box": {"type": "Polygon", "coordinates": [[[-46.826039, -24.008814], [-46.826039, -23.356792], [-46.365052, -23.356792], [-46.365052, -24.008814]]]}, "attributes": {}}, "contributors": null, "quoted_status_id": 910646938336399360, "quoted_status_id_str": "910646938336399360", "is_quote_status": true, "quote_count": 41, "reply_count": 37, "retweet_count": 1098, "favorite_count": 1646, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/S3NGO5eesk", "expanded_url": "https://twitter.com/epocanegocios/status/910646938336399360", "display_url": "twitter.com/epocanegocios/\u2026", "indices": [47, 70]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/g4QA5TrJx7", "expanded_url": "https://twitter.com/juzao/status/910654178233606144", "display_url": "twitter.com/juzao/status/9\u2026", "indices": [7, 30]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028602657"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102713176064, "id_str": "910976102713176064", "text": "RT @XXL: F*ck it up sis\n\n(Remember Miri Ben-Ari?) https://t.co/Sttt7nl5XE", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 257182892, "id_str": "257182892", "name": "G\ud83d\udca7", "screen_name": "GSwagg_Music", "location": "Chester, South Carolina\u2708\ufe0f", "url": "http://www.soundcloud.com/SpiffyLover", "description": "18\ud83c\udf93|T.M\u2764\ufe0f|Blessed.\ud83d\ude07\u2728|R.I.P Uncle William \ud83e\udd40", "translator_type": "none", "protected": false, "verified": false, "followers_count": 956, "friends_count": 1114, "listed_count": 2, "favourites_count": 5558, "statuses_count": 10917, "created_at": "Thu Feb 24 22:25:09 +0000 2011", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "642D8B", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/667592255/ae81ae31421f99621d997ad28604bb2a.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/667592255/ae81ae31421f99621d997ad28604bb2a.png", "profile_background_tile": true, "profile_link_color": "FF0000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "C93ABF", "profile_text_color": "3D1957", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900561976082006017/HSKdj0nQ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900561976082006017/HSKdj0nQ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/257182892/1504327173", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:03:14 +0000 2017", "id": 910942512734457856, "id_str": "910942512734457856", "text": "F*ck it up sis\n\n(Remember Miri Ben-Ari?) https://t.co/Sttt7nl5XE", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 14629315, "id_str": "14629315", "name": "XXL Magazine", "screen_name": "XXL", "location": "New York", "url": "http://freshman.xxlmag.com/", "description": "Hip-Hop on a Higher Level", "translator_type": "none", "protected": false, "verified": true, "followers_count": 1557119, "friends_count": 2203, "listed_count": 6280, "favourites_count": 1945, "statuses_count": 161489, "created_at": "Fri May 02 18:29:28 +0000 2008", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFE", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/464062667259265024/r1JC4Lbl.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/464062667259265024/r1JC4Lbl.jpeg", "profile_background_tile": true, "profile_link_color": "D40C16", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "E8F0D4", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/476774260954771456/pR-suB70_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/476774260954771456/pR-suB70_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14629315/1499361720", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 113, "reply_count": 20, "retweet_count": 561, "favorite_count": 1127, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [41, 64], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040"}]}, "extended_entities": {"media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [41, 64], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040", "video_info": {"aspect_ratio": [9, 16], "duration_millis": 139600, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/720x1280/9sHpLDOeRPWC2g6c.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/360x640/TkiGkWPdTzQfAG5J.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/pl/rPi3EjbfxB7wVWhr.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/180x320/yKcWMM_ftd5nqUhd.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "XXL", "name": "XXL Magazine", "id": 14629315, "id_str": "14629315", "indices": [3, 7]}], "symbols": [], "media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [50, 73], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040"}]}, "extended_entities": {"media": [{"id": 910726623716155392, "id_str": "910726623716155392", "indices": [50, 73], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910726623716155392/pu/img/VOg7A2BFtnybjUpZ.jpg", "url": "https://t.co/Sttt7nl5XE", "display_url": "pic.twitter.com/Sttt7nl5XE", "expanded_url": "https://twitter.com/mediatkd/status/910727123383590912/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910727123383590912, "source_status_id_str": "910727123383590912", "source_user_id": 3907006040, "source_user_id_str": "3907006040", "video_info": {"aspect_ratio": [9, 16], "duration_millis": 139600, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/720x1280/9sHpLDOeRPWC2g6c.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/360x640/TkiGkWPdTzQfAG5J.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/pl/rPi3EjbfxB7wVWhr.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910726623716155392/pu/vid/180x320/yKcWMM_ftd5nqUhd.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in", "timestamp_ms": "1506028602661"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102730027011, "id_str": "910976102730027011", "text": "TClowting Alright. Can you try reinstalling the app using the steps here: https://t.co/CUI3fa1Pft and see if it makes a difference? /LM", "source": "<a href=\"https://ifttt.com\" rel=\"nofollow\">IFTTT</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 773304972, "id_str": "773304972", "name": "Pxloey1", "screen_name": "Cxloey", "location": null, "url": null, "description": "2012", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2, "friends_count": 1, "listed_count": 0, "favourites_count": 0, "statuses_count": 569, "created_at": "Wed Aug 22 09:55:55 +0000 2012", "utc_offset": 25200, "time_zone": "Jakarta", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F70D30", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/639667580/bmv0bb901648bku0ix63.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/639667580/bmv0bb901648bku0ix63.jpeg", "profile_background_tile": true, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/CUI3fa1Pft", "expanded_url": "http://spoti.fi/1TUh9sT", "display_url": "spoti.fi/1TUh9sT", "indices": [74, 97]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729945090, "id_str": "910976102729945090", "text": "RT @michaelc4reta: el personaje de Matteo nunca me cay\u00f3 bien pero est\u00e1 temporada cre\u00ed que iba a mejorar but no,fue todo lo contrario:)", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 866446602768179200, "id_str": "866446602768179200", "name": "Ana\ud83d\udc9a 15/9", "screen_name": "sb_anabanana", "location": "Guayaquil, Ecuador", "url": null, "description": "PRP\ud83d\udd25 Muerta.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 19, "friends_count": 65, "listed_count": 0, "favourites_count": 244, "statuses_count": 2151, "created_at": "Mon May 22 00:12:22 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908694693067804672/zxC9LPwu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908694693067804672/zxC9LPwu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/866446602768179200/1503291419", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:15:01 +0000 2017", "id": 910975678677385217, "id_str": "910975678677385217", "text": "el personaje de Matteo nunca me cay\u00f3 bien pero est\u00e1 temporada cre\u00ed que iba a mejorar but no,fue todo lo contrario:)", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 759224154679836672, "id_str": "759224154679836672", "name": "\ud83c\udde6\ud83c\uddf7\ud83c\uddf2\ud83c\uddfd", "screen_name": "michaelc4reta", "location": "\ud83d\udc51valentina\ud83d\udc51", "url": "https://www.instagram.com/alejandrapsk/", "description": "'' and if you want it, take it\nand if you can't take it, break it ''", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1788, "friends_count": 343, "listed_count": 6, "favourites_count": 16287, "statuses_count": 63337, "created_at": "Sat Jul 30 03:08:39 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "7FDBB6", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910913215432941568/qZpxDkU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910913215432941568/qZpxDkU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/759224154679836672/1505829638", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 3, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "michaelc4reta", "name": "\ud83c\udde6\ud83c\uddf7\ud83c\uddf2\ud83c\uddfd", "id": 759224154679836672, "id_str": "759224154679836672", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102734155777, "id_str": "910976102734155777", "text": "In the month of September win a $100 Hyatt gift card! https://t.co/2rj5yTH99Y", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 91508868, "id_str": "91508868", "name": "Dana  Rodriguez", "screen_name": "tatzgrrly", "location": "Lexington, SC", "url": "https://www.facebook.com/dana.rodriguez.7583", "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 3527, "friends_count": 2621, "listed_count": 710, "favourites_count": 18811, "statuses_count": 264093, "created_at": "Sat Nov 21 05:18:17 +0000 2009", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "642D8B", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/859622521/17b394cc9d358516c52035851df8719f.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/859622521/17b394cc9d358516c52035851df8719f.jpeg", "profile_background_tile": true, "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "7AC3EE", "profile_text_color": "FF0000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/459879053831331841/hWacCXK0_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459879053831331841/hWacCXK0_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/91508868/1496679249", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/2rj5yTH99Y", "expanded_url": "http://woobox.com/m4bsbc/jenovj", "display_url": "woobox.com/m4bsbc/jenovj", "indices": [54, 77]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602666"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102729908224, "id_str": "910976102729908224", "text": "RT @UkNatArchives: #OTD 1915 - Cecil Chubb purchased #Stonehenge for \u00a36,600, as a gift for his wife. (image, 1906)\u2026 ", "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2724136502, "id_str": "2724136502", "name": "Dr Eleanor Quince", "screen_name": "eleanorquince", "location": null, "url": null, "description": "Lecturer at University of Southampton @HistoryAtSoton, country houses, heritage, interiors, London, shopping. AHRC projects: @swaythlingww1, @AntiqueDealersA", "translator_type": "none", "protected": false, "verified": false, "followers_count": 720, "friends_count": 873, "listed_count": 73, "favourites_count": 7294, "statuses_count": 8012, "created_at": "Mon Aug 11 15:22:30 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/498855652425334784/Y3asmrdj_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/498855652425334784/Y3asmrdj_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2724136502/1413737990", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:00:44 +0000 2017", "id": 910926785860259840, "id_str": "910926785860259840", "text": "#OTD 1915 - Cecil Chubb purchased #Stonehenge for \u00a36,600, as a gift for his wife. (image, 1906)\u2026 https://t.co/4JMfmgtbe6", "display_text_range": [0, 140], "source": "<a href=\"http://www.socialsignin.co.uk\" rel=\"nofollow\">SocialSignIn Application</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 55190298, "id_str": "55190298", "name": "National Archives UK", "screen_name": "UkNatArchives", "location": "Kew, London", "url": "http://www.nationalarchives.gov.uk", "description": "Official archive of the UK government. Discover our online collections, research guides and educational resources spanning 1,000 years of history", "translator_type": "none", "protected": false, "verified": true, "followers_count": 114639, "friends_count": 460, "listed_count": 2262, "favourites_count": 5691, "statuses_count": 9545, "created_at": "Thu Jul 09 09:30:16 +0000 2009", "utc_offset": 3600, "time_zone": "London", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "716B6B", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/821102698/d93eaa657b69e4191692db1e54cdb033.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/821102698/d93eaa657b69e4191692db1e54cdb033.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "EEEEEE", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/552155680027586560/jeQoHQvu_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/552155680027586560/jeQoHQvu_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/55190298/1480588521", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "#OTD 1915 - Cecil Chubb purchased #Stonehenge for \u00a36,600, as a gift for his wife. (image, 1906) https://t.co/ZUlqphbjo0 https://t.co/xGG2WibSOm", "display_text_range": [0, 119], "entities": {"hashtags": [{"text": "OTD", "indices": [0, 4]}, {"text": "Stonehenge", "indices": [34, 45]}], "urls": [{"url": "https://t.co/ZUlqphbjo0", "expanded_url": "http://socsi.in/cWA2A", "display_url": "socsi.in/cWA2A", "indices": [96, 119]}], "user_mentions": [], "symbols": [], "media": [{"id": 910926782790029318, "id_str": "910926782790029318", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "url": "https://t.co/xGG2WibSOm", "display_url": "pic.twitter.com/xGG2WibSOm", "expanded_url": "https://twitter.com/UkNatArchives/status/910926785860259840/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 656, "resize": "fit"}, "small": {"w": 680, "h": 372, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1281, "h": 700, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910926782790029318, "id_str": "910926782790029318", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRDFSiW0AYTGC5.jpg", "url": "https://t.co/xGG2WibSOm", "display_url": "pic.twitter.com/xGG2WibSOm", "expanded_url": "https://twitter.com/UkNatArchives/status/910926785860259840/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 656, "resize": "fit"}, "small": {"w": 680, "h": 372, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1281, "h": 700, "resize": "fit"}}}]}}, "quote_count": 6, "reply_count": 1, "retweet_count": 33, "favorite_count": 31, "entities": {"hashtags": [{"text": "OTD", "indices": [0, 4]}, {"text": "Stonehenge", "indices": [34, 45]}], "urls": [{"url": "https://t.co/4JMfmgtbe6", "expanded_url": "https://twitter.com/i/web/status/910926785860259840", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [97, 120]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "OTD", "indices": [19, 23]}, {"text": "Stonehenge", "indices": [53, 64]}], "urls": [], "user_mentions": [{"screen_name": "UkNatArchives", "name": "National Archives UK", "id": 55190298, "id_str": "55190298", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028602665"}
{"created_at": "Thu Sep 21 21:16:42 +0000 2017", "id": 910976102700601344, "id_str": "910976102700601344", "text": "@AnsgarMedina @Politica_LR Mezclas papas con camotes.  Por supuesto que el homosexualismo es una realidad, qui\u00e9n lo\u2026 https://t.co/H9ZDS6ECVJ", "display_text_range": [27, 140], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": true, "in_reply_to_status_id": 910862400655695872, "in_reply_to_status_id_str": "910862400655695872", "in_reply_to_user_id": 3007955141, "in_reply_to_user_id_str": "3007955141", "in_reply_to_screen_name": "AnsgarMedina", "user": {"id": 128212618, "id_str": "128212618", "name": "Orlando Gonzales", "screen_name": "ogonzaleslara", "location": "Lima - Per\u00fa", "url": null, "description": "Cristiano. Peruano. Ingeniero.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 185, "friends_count": 349, "listed_count": 1, "favourites_count": 2897, "statuses_count": 2925, "created_at": "Wed Mar 31 13:03:33 +0000 2010", "utc_offset": -18000, "time_zone": "Lima", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/542053604/7.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/542053604/7.jpg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/865423529000538112/M0nXVpQ-_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/865423529000538112/M0nXVpQ-_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/128212618/1474988790", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "@AnsgarMedina @Politica_LR Mezclas papas con camotes.  Por supuesto que el homosexualismo es una realidad, qui\u00e9n lo neg\u00f3? Pero no es un sexo, sexo solo hay dos.", "display_text_range": [27, 160], "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "AnsgarMedina", "name": "Ansgar Medina", "id": 3007955141, "id_str": "3007955141", "indices": [0, 13]}, {"screen_name": "Politica_LR", "name": "Pol\u00edtica LRep\u00fablica", "id": 829750511624679424, "id_str": "829750511624679424", "indices": [14, 26]}], "symbols": []}}, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/H9ZDS6ECVJ", "expanded_url": "https://twitter.com/i/web/status/910976102700601344", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [{"screen_name": "AnsgarMedina", "name": "Ansgar Medina", "id": 3007955141, "id_str": "3007955141", "indices": [0, 13]}, {"screen_name": "Politica_LR", "name": "Pol\u00edtica LRep\u00fablica", "id": 829750511624679424, "id_str": "829750511624679424", "indices": [14, 26]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028602658"}
{"delete": {"status": {"id": 361850201977270273, "id_str": "361850201977270273", "user_id": 488386698, "user_id_str": "488386698"}, "timestamp_ms": "1506028603090"}}
{"delete": {"status": {"id": 910120804456607744, "id_str": "910120804456607744", "user_id": 763298456303652864, "user_id_str": "763298456303652864"}, "timestamp_ms": "1506028603379"}}
{"delete": {"status": {"id": 910976031397466112, "id_str": "910976031397466112", "user_id": 173443386, "user_id_str": "173443386"}, "timestamp_ms": "1506028603523"}}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915758080, "id_str": "910976106915758080", "text": "RT @ytym333: Jr.\u304f\u3093\u305f\u3061\u300c\u5c71\u7530\u304f\u3093\u306f\u3044\u3044\u304a\u5ac1\u3055\u3093\u306b\u306a\u308a\u305d\u3046\uff01\u5973\u88c5\u304c\u4f3c\u5408\u3046\uff01\u300d\n\n\u88d5\u7fd4\u304f\u3093\u300c\u671d\u5473\u564c\u6c41\u4f5c\u3063\u3066\u304f\u308c\u305f\u304b\u3089\u201c\u7d50\u5a5a\u3057\u3088\u201d \u3063\u3066\u601d\u3063\u305f\u300d\n\n\u30ec\u30d9\u30eb\u304c1000\u9055\u3046", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 901610946598023168, "id_str": "901610946598023168", "name": "\u88d5\u7fd4\u795e\u62c5\ud83d\udc2c\u3086\u304d\u306a", "screen_name": "F96CF9", "location": null, "url": null, "description": "\u88d5\u7fd4\u795e\u62c5\ud83d\udc2cJUMP\u30aa\u30fc\u30eb\u62c5\u5f53\ud83d\ude4c\u305d\u3053\u3089\u3078\u3093\u306e\u5b66\u751f\u3067\u3054\u3056\u3044\u307e\u3059\ud83d\ude44\ud83d\udd90\ud83c\udffb\ud83d\udc93\u3068\u3082\u304f\u3093\ud83c\udf4b", "translator_type": "none", "protected": false, "verified": false, "followers_count": 319, "friends_count": 247, "listed_count": 0, "favourites_count": 53, "statuses_count": 994, "created_at": "Sun Aug 27 01:02:55 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906849622311632896/INrO5BS8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906849622311632896/INrO5BS8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/901610946598023168/1503827492", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 09:33:14 +0000 2017", "id": 910799067822800896, "id_str": "910799067822800896", "text": "Jr.\u304f\u3093\u305f\u3061\u300c\u5c71\u7530\u304f\u3093\u306f\u3044\u3044\u304a\u5ac1\u3055\u3093\u306b\u306a\u308a\u305d\u3046\uff01\u5973\u88c5\u304c\u4f3c\u5408\u3046\uff01\u300d\n\n\u88d5\u7fd4\u304f\u3093\u300c\u671d\u5473\u564c\u6c41\u4f5c\u3063\u3066\u304f\u308c\u305f\u304b\u3089\u201c\u7d50\u5a5a\u3057\u3088\u201d \u3063\u3066\u601d\u3063\u305f\u300d\n\n\u30ec\u30d9\u30eb\u304c1000\u9055\u3046", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1070076326, "id_str": "1070076326", "name": "\u3042\u3084\u304b", "screen_name": "ytym333", "location": "\u3086\u3068\u3084\u307e   \u5947\u8de1\u306e\u6b6f\u30d6\u30e9\u30b7 ", "url": "https://ask.fm/ytym333", "description": "\u9ed2\u9aea\u91cd\u3081\u524d\u9aea\u3068\u201d\u3060\u304b\u3089\u201d\u304c\u3081\u3061\u3083\u304f\u3061\u3083\u306b\u597d\u304d\u3067\u3059 (\u95a2\u897f\u306e\u5144\u3061\u3083\u3093\u9054\u3092\u611b\u3067\u308b\u30a2\u30ab\u30a6\u30f3\u30c8 @nzm__twin333)", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5016, "friends_count": 85, "listed_count": 23, "favourites_count": 23552, "statuses_count": 32262, "created_at": "Tue Jan 08 05:43:10 +0000 2013", "utc_offset": 28800, "time_zone": "Irkutsk", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/895921897510100992/BQCoxIdh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/895921897510100992/BQCoxIdh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1070076326/1484478947", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 9, "reply_count": 1, "retweet_count": 808, "favorite_count": 2556, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "ytym333", "name": "\u3042\u3084\u304b", "id": 1070076326, "id_str": "1070076326", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106894786560, "id_str": "910976106894786560", "text": "RT @_nskz: \u30a2\u30cf\uff01\u30a2\u30cf\u30cf\u30cf\uff01\u8ab0\u3082\u79c1\u3092\u53f1\u3089\u306a\u3044\uff01\u79c1\u306e\u81ea\u7531\u306a\u306e\uff01\u30a2\u30cf\u30cf\u30cf\uff01 https://t.co/TsKNtHWYfM", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2171159820, "id_str": "2171159820", "name": "\u982d\u306e\u60aa\u3044REIN\u2614\ud83d\udc36", "screen_name": "yuikonnu1999", "location": "\u795e\u5948\u5ddd", "url": "https://youtu.be/9qb4sXlASaU", "description": "\u5c11\u3057\u6b4c\u3063\u3066\u307f\u305f\u3092\u6295\u7a3f\u3057\u3066\u3044\u307e\u3059\u3002\u6700\u8fd1\u306f\u30a2\u30b3\u30ae\u3084\u3063\u3066\u307e\u3059\u3088\u3002CAS\u306f\u4e0d\u5b9a\u671f\u6c17\u5473\ud83c\udf00\u30ab\u30e1\u30e9\u3001\u30b3\u30b9\u30d7\u30ec\u3001\u304a\u7d75\u63cf\u304d\u3082\u3002\u30d7\u30ea\u30ad\u30e5\u30a2\u3068\u307c\u306e\u307c\u306e\u304c\u5927\u597d\u304d\u3067\u3059\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3585, "friends_count": 984, "listed_count": 13, "favourites_count": 9467, "statuses_count": 15910, "created_at": "Sun Nov 03 00:06:15 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909906927651495936/LMF8W7l9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909906927651495936/LMF8W7l9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2171159820/1505417970", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 15:00:55 +0000 2017", "id": 910519146001055744, "id_str": "910519146001055744", "text": "\u30a2\u30cf\uff01\u30a2\u30cf\u30cf\u30cf\uff01\u8ab0\u3082\u79c1\u3092\u53f1\u3089\u306a\u3044\uff01\u79c1\u306e\u81ea\u7531\u306a\u306e\uff01\u30a2\u30cf\u30cf\u30cf\uff01 https://t.co/TsKNtHWYfM", "display_text_range": [0, 29], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2551310142, "id_str": "2551310142", "name": "\u30de\u30ad\u30b3", "screen_name": "_nskz", "location": null, "url": "https://shira-tan.theblog.me/", "description": "@likepocky \u306e \u30a2\u30ab\u30a6\u30f3\u30c8\u79fb\u52d5\u5148.\ud83c\udfb8\ud83c\udfb7\ud83c\udf5c\ud83c\udf70\ud83c\udf66\ud83c\udf7a\ud83c\udf6a \u751f\u30af\u30ea\u30fc\u30e0\u306f\u98f2\u307f\u7269  \u25bd\u5275\u4f5c/CoC/\uff72\uff9d\uff7e\uff72\uff9d/\uff7b\uff80\uff7d\uff8d\uff9f/\uff8e\uff9e\uff70\uff84\uff9e\uff79\uff9e\uff70\uff91/\u9b3c\u982d\u83ab\u5b8f\n      http://odaibako.net/u/_nskz", "translator_type": "none", "protected": false, "verified": false, "followers_count": 502, "friends_count": 335, "listed_count": 30, "favourites_count": 19850, "statuses_count": 27222, "created_at": "Sat Jun 07 01:29:42 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897809139346296832/VHpkXFCR_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897809139346296832/VHpkXFCR_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2551310142/1505311500", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 249, "reply_count": 112, "retweet_count": 29802, "favorite_count": 64240, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [30, 53], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [30, 53], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "_nskz", "name": "\u30de\u30ad\u30b3", "id": 2551310142, "id_str": "2551310142", "indices": [3, 9]}], "symbols": [], "media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [41, 64], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}, "source_status_id": 910519146001055744, "source_status_id_str": "910519146001055744", "source_user_id": 2551310142, "source_user_id_str": "2551310142"}]}, "extended_entities": {"media": [{"id": 910519114522796032, "id_str": "910519114522796032", "indices": [41, 64], "media_url": "http://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLQT35VoAAPYse.jpg", "url": "https://t.co/TsKNtHWYfM", "display_url": "pic.twitter.com/TsKNtHWYfM", "expanded_url": "https://twitter.com/_nskz/status/910519146001055744/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 928, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 308, "resize": "fit"}, "medium": {"w": 1200, "h": 544, "resize": "fit"}}, "source_status_id": 910519146001055744, "source_status_id_str": "910519146001055744", "source_user_id": 2551310142, "source_user_id_str": "2551310142"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603658"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106911588352, "id_str": "910976106911588352", "text": "RT @TheHoopFocus: Lamar Norman Jr. (@Swaggyp__0) Ultimate Mixtape - coming soon. #ForTheCulture", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2209873915, "id_str": "2209873915", "name": "Nicole Cano", "screen_name": "nicolecano30_", "location": "Bay Area, CA", "url": "http://Instagram.com/nicolecurry.30", "description": "\ud83c\uddf2\ud83c\uddfd Bay Area \ud83c\udf09", "translator_type": "none", "protected": false, "verified": false, "followers_count": 684, "friends_count": 2568, "listed_count": 1, "favourites_count": 6512, "statuses_count": 7360, "created_at": "Sat Nov 23 02:50:30 +0000 2013", "utc_offset": -39600, "time_zone": "Midway Island", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/892870977415032833/1ab63YdX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/892870977415032833/1ab63YdX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2209873915/1479063769", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:16:36 +0000 2017", "id": 910976075420848128, "id_str": "910976075420848128", "text": "Lamar Norman Jr. (@Swaggyp__0) Ultimate Mixtape - coming soon. #ForTheCulture", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2577778291, "id_str": "2577778291", "name": "HoopFocus", "screen_name": "TheHoopFocus", "location": "Baseline", "url": "https://www.youtube.com/channel/UCOvu0lmbJlWZ0Tnlf7zynAw", "description": "For the Culture | Contact: officialhoopfocus@gmail.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5198, "friends_count": 2735, "listed_count": 4, "favourites_count": 2876, "statuses_count": 1439, "created_at": "Fri Jun 20 00:59:25 +0000 2014", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/902687475071565824/Q3Ksiqky_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/902687475071565824/Q3Ksiqky_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2577778291/1504052081", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [{"text": "ForTheCulture", "indices": [63, 77]}], "urls": [], "user_mentions": [{"screen_name": "Swaggyp__0", "name": "Lamar Norman Jr", "id": 2779400511, "id_str": "2779400511", "indices": [18, 29]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "ForTheCulture", "indices": [81, 95]}], "urls": [], "user_mentions": [{"screen_name": "TheHoopFocus", "name": "HoopFocus", "id": 2577778291, "id_str": "2577778291", "indices": [3, 16]}, {"screen_name": "Swaggyp__0", "name": "Lamar Norman Jr", "id": 2779400511, "id_str": "2779400511", "indices": [36, 47]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603662"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106903347200, "id_str": "910976106903347200", "text": "RT @Drebae_: Fenty Beauty was a great launch. I'm just waiting on Rihanna to make an eyeshadow pallete now  https://t.co/yuP9FZT72d", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 387503882, "id_str": "387503882", "name": "brownhottie", "screen_name": "cluelessvibe", "location": "New Jersey, USA", "url": "http://uncutthinking.tumblr.com/", "description": "Snapchat//@cluelessvibe http://PayPal.me/EnDajac", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1510, "friends_count": 877, "listed_count": 18, "favourites_count": 5478, "statuses_count": 179354, "created_at": "Sun Oct 09 05:29:44 +0000 2011", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/768318209/93b700134fc55736526559b3d983a3db.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/768318209/93b700134fc55736526559b3d983a3db.jpeg", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/830517106793779200/K7NVHfd5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/830517106793779200/K7NVHfd5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/387503882/1478248906", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:56:24 +0000 2017", "id": 910955894980059136, "id_str": "910955894980059136", "text": "Fenty Beauty was a great launch. I'm just waiting on Rihanna to make an eyeshadow pallete now  https://t.co/yuP9FZT72d", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3117314104, "id_str": "3117314104", "name": "Alluring Ivy\u2728", "screen_name": "Drebae_", "location": "Bay Area", "url": "https://youtu.be/XYKb1z2PVUE", "description": "Makeup Enthusiast | Social Media Maven | I am a personality. Tweets Featured in Buzzfeed, TIME, Affinity, BET, MTV & more | Promotions: drebaemua@gmail.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 70129, "friends_count": 882, "listed_count": 1565, "favourites_count": 29910, "statuses_count": 30197, "created_at": "Thu Mar 26 05:18:44 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/885666699143389184/qRj8JP-X_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/885666699143389184/qRj8JP-X_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3117314104/1502070861", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 22, "reply_count": 5, "retweet_count": 321, "favorite_count": 967, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [95, 118], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104"}]}, "extended_entities": {"media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [95, 118], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104", "video_info": {"aspect_ratio": [25, 14], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/C9iMV8JVYAAidL4.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Drebae_", "name": "Alluring Ivy\u2728", "id": 3117314104, "id_str": "3117314104", "indices": [3, 11]}], "symbols": [], "media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [108, 131], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104"}]}, "extended_entities": {"media": [{"id": 853586437937127424, "id_str": "853586437937127424", "indices": [108, 131], "media_url": "http://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/C9iMV8JVYAAidL4.jpg", "url": "https://t.co/yuP9FZT72d", "display_url": "pic.twitter.com/yuP9FZT72d", "expanded_url": "https://twitter.com/Drebae_/status/853586457285378048/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 190, "resize": "fit"}, "large": {"w": 350, "h": 196, "resize": "fit"}, "medium": {"w": 350, "h": 196, "resize": "fit"}}, "source_status_id": 853586457285378048, "source_status_id_str": "853586457285378048", "source_user_id": 3117314104, "source_user_id_str": "3117314104", "video_info": {"aspect_ratio": [25, 14], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/C9iMV8JVYAAidL4.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603660"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106903216128, "id_str": "910976106903216128", "text": "#pcb board swap. check out our website at https://t.co/volC5bah5L today for more info!\u2026 https://t.co/jWrYc0x2Pr", "source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 760186128, "id_str": "760186128", "name": "TotalAccessData", "screen_name": "Total_Access2", "location": "Diamond Springs, CA", "url": "http://about.me/totalaccessdatarecovery", "description": "Rated Best Customer Service in the industry.\r\nFree FedEx shipping for all recoveries.\r\nWe guarantee a quote within one hour or you'll receive 10% off", "translator_type": "none", "protected": false, "verified": false, "followers_count": 490, "friends_count": 1793, "listed_count": 7, "favourites_count": 0, "statuses_count": 5279, "created_at": "Wed Aug 15 21:21:51 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/436645649912590337/pUfWf2Iw.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/436645649912590337/pUfWf2Iw.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "5E634A", "profile_text_color": "551E18", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2508978531/p92hvzp0vjib48vvtq0m_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2508978531/p92hvzp0vjib48vvtq0m_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/760186128/1392939277", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "pcb", "indices": [0, 4]}], "urls": [{"url": "https://t.co/volC5bah5L", "expanded_url": "http://www.totalaccessdatarecovery.com", "display_url": "totalaccessdatarecovery.com", "indices": [42, 65]}, {"url": "https://t.co/jWrYc0x2Pr", "expanded_url": "https://www.instagram.com/p/BZPD5TxHmD9/", "display_url": "instagram.com/p/BZPD5TxHmD9/", "indices": [88, 111]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603660"}
{"delete": {"status": {"id": 910758162499764224, "id_str": "910758162499764224", "user_id": 3634468694, "user_id_str": "3634468694"}, "timestamp_ms": "1506028603739"}}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106907480065, "id_str": "910976106907480065", "text": "Sometimes I wish I had a real bestfriend\ud83e\udd14", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 435985398, "id_str": "435985398", "name": "Kelsey Johnson", "screen_name": "ItsallabtdaBOSS", "location": null, "url": null, "description": "WELCOME TO MY WORLD!!! BO$$ LADY!!!! Mother of a Princess \ud83d\udc78\ud83c\udffd \ud83d\udc63ME ON IG @Boss_Lady745 | Add me on Snapchat: Boss_lady745", "translator_type": "none", "protected": false, "verified": false, "followers_count": 613, "friends_count": 461, "listed_count": 1, "favourites_count": 890, "statuses_count": 22330, "created_at": "Tue Dec 13 17:17:17 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "F5ABB5", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883153935887994886/oWH7XVXN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883153935887994886/oWH7XVXN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/435985398/1373413757", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603661"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106898931712, "id_str": "910976106898931712", "text": "RT @CitouSabia_: S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3344360243, "id_str": "3344360243", "name": "frases \ud83d\udcab", "screen_name": "frasevlngatlvas", "location": "ative as notifica\u00e7\u00f5es. ", "url": null, "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 143355, "friends_count": 58691, "listed_count": 39, "favourites_count": 2154, "statuses_count": 7509, "created_at": "Wed Jun 24 17:50:16 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ABB8C2", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": true, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/908494629892390912/b8XKuhLv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908494629892390912/b8XKuhLv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3344360243/1505436974", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:13:51 +0000 2017", "id": 910975383260016641, "id_str": "910975383260016641", "text": "S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "display_text_range": [0, 45], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 900428139523919872, "id_str": "900428139523919872", "name": "Sabi\u00e1", "screen_name": "CitouSabia_", "location": null, "url": "https://www.instagram.com/p/BZT0mzLg8Lk/", "description": "V1D4 L0k4\nSou o Dono do Morro porraaaaaa |Aceitamos sugest\u00f5es de Tweets | Ativem as notifica\u00e7\u00f5es // Criado- 08/09/2017 \u2764\ufe0f\ud83d\ude4f Twitter dedicado ao personagem Sabi\u00e1", "translator_type": "none", "protected": false, "verified": false, "followers_count": 20112, "friends_count": 27, "listed_count": 24, "favourites_count": 67, "statuses_count": 412, "created_at": "Wed Aug 23 18:42:52 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/900428139523919872/1505840576", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 29, "favorite_count": 23, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "CitouSabia_", "name": "Sabi\u00e1", "id": 900428139523919872, "id_str": "900428139523919872", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603659"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106903347201, "id_str": "910976106903347201", "text": "RT @BTS_twt: \ud83d\udc95\ud83d\ude06 https://t.co/aK3fMYg6qM", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2966041890, "id_str": "2966041890", "name": "Savion_jin_s.coups", "screen_name": "savionjinscoups", "location": null, "url": "http://instagram.com/savion_jin_s.coups", "description": "STOP THE FAN WARS AND LOVE AND SUPPORT ALL DIFFERENT IDOLS! KPOPPERS UNITE! \ud83d\udc95\ud83d\udc95\ud83d\udc95\nSVT PENTAGON BTS MONSTA X EXO K-POP \ud83d\udc47 Follow my instagram", "translator_type": "none", "protected": false, "verified": false, "followers_count": 68, "friends_count": 116, "listed_count": 1, "favourites_count": 2905, "statuses_count": 2867, "created_at": "Thu Jan 08 12:19:34 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "7FDBB6", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/903600015020576769/eDwLhBVh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/903600015020576769/eDwLhBVh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2966041890/1504270005", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 13:57:46 +0000 2017", "id": 910865640541495297, "id_str": "910865640541495297", "text": "\ud83d\udc95\ud83d\ude06 https://t.co/aK3fMYg6qM", "display_text_range": [0, 2], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 335141638, "id_str": "335141638", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "screen_name": "BTS_twt", "location": null, "url": "http://btsblog.ibighit.com", "description": "Hi~ we are BTS!", "translator_type": "regular", "protected": false, "verified": true, "followers_count": 8463059, "friends_count": 98, "listed_count": 19803, "favourites_count": 60, "statuses_count": 10126, "created_at": "Thu Jul 14 06:32:56 +0000 2011", "utc_offset": 28800, "time_zone": "Irkutsk", "geo_enabled": true, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_link_color": "FF0000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/335141638/1504796451", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 10762, "reply_count": 28240, "retweet_count": 167863, "favorite_count": 363148, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [3, 26], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [3, 26], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}}, {"id": 910865622975733760, "id_str": "910865622975733760", "indices": [3, 26], "media_url": "http://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}, "source_status_id": 910865640541495297, "source_status_id_str": "910865640541495297", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "extended_entities": {"media": [{"id": 910865622979846144, "id_str": "910865622979846144", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUfUIAAIIb8.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}, "source_status_id": 910865640541495297, "source_status_id_str": "910865640541495297", "source_user_id": 335141638, "source_user_id_str": "335141638"}, {"id": 910865622975733760, "id_str": "910865622975733760", "indices": [16, 39], "media_url": "http://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQLdUeVYAA2Iec.jpg", "url": "https://t.co/aK3fMYg6qM", "display_url": "pic.twitter.com/aK3fMYg6qM", "expanded_url": "https://twitter.com/BTS_twt/status/910865640541495297/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "source_status_id": 910865640541495297, "source_status_id_str": "910865640541495297", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603660"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106919899136, "id_str": "910976106919899136", "text": "@xtcoxax \u304a\u306f\u3087\u30fc\u732b\u3055\u3093\ud83d\ude0a", "display_text_range": [9, 17], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910974451944112128, "in_reply_to_status_id_str": "910974451944112128", "in_reply_to_user_id": 880077494535077888, "in_reply_to_user_id_str": "880077494535077888", "in_reply_to_screen_name": "xtcoxax", "user": {"id": 4795946552, "id_str": "4795946552", "name": "\u3071\u304b\u3071\u304b\ud83e\udd24", "screen_name": "annzama1220", "location": "\u65e5\u672c", "url": null, "description": "\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 640, "friends_count": 157, "listed_count": 12, "favourites_count": 30162, "statuses_count": 23847, "created_at": "Fri Jan 22 00:53:25 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908523488545140736/BEIfSl9N_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908523488545140736/BEIfSl9N_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "xtcoxax", "name": "\ud83d\udc3b \u3042\u3059\u307d\u3093 \u3002", "id": 880077494535077888, "id_str": "880077494535077888", "indices": [0, 8]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603664"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924093440, "id_str": "910976106924093440", "text": "@iamanthonyjames @JSHiggins_ Let\u2019s keep it that way", "display_text_range": [29, 51], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975982147919873, "in_reply_to_status_id_str": "910975982147919873", "in_reply_to_user_id": 22640188, "in_reply_to_user_id_str": "22640188", "in_reply_to_screen_name": "iamanthonyjames", "user": {"id": 145195467, "id_str": "145195467", "name": "Michael \u2728", "screen_name": "MJRgrs", "location": "everywhere like such as", "url": "http://Instagr.am/MJRgrs", "description": "this is joy, this is summer", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 3218, "friends_count": 546, "listed_count": 29, "favourites_count": 18708, "statuses_count": 30553, "created_at": "Tue May 18 10:30:19 +0000 2010", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543530546987409408/-8ZDKq_J.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543530546987409408/-8ZDKq_J.jpeg", "profile_background_tile": false, "profile_link_color": "919191", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "000000", "profile_text_color": "858585", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/888497035997048832/RMrXbSZ6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/888497035997048832/RMrXbSZ6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/145195467/1503786947", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "iamanthonyjames", "name": "Ant \ud83d\udd25\ud83d\udc1c", "id": 22640188, "id_str": "22640188", "indices": [0, 16]}, {"screen_name": "JSHiggins_", "name": "James Higgins", "id": 201817316, "id_str": "201817316", "indices": [17, 28]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924318720, "id_str": "910976106924318720", "text": "\u0631\u0628\u0646\u0627 \u0628\u064a\u0642\u0648\u0644 \"\u0648 \u0644\u0642\u062f \u062e\u0644\u0642\u0646\u0627 \u0627\u0644\u0627\u0646\u0633\u0627\u0646 \u0648 \u0646\u0639\u0644\u0645 \u0645\u0627 \u062a\u0648\u0633\u0648\u0633 \u0628\u0647 \u0646\u0641\u0633\u0647 \u0648 \u0646\u062d\u0646 \u0627\u0642\u0631\u0628 \u0627\u0644\u064a\u0647 \u0645\u0646 \u062d\u0628\u0644 \u0627\u0644\u0648\u0631\u064a\u062f\" &lt;3 !\n\u0631\u0628\u0646\u0627 \u0642\u0631\u064a\u0628 \u0645\u0646\u0643 \u0627\u0643\u062a\u0631 \u0645\u0645\u0627 \u062a\u062a\u062e\u064a\u0644 \u0628\u0633 \u0627\u0646\u062a \u0627\u0644\u064a \u0628\u0639\u064a\u062f ..", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 891295212, "id_str": "891295212", "name": "ALY AHMED", "screen_name": "aly_ahmed2", "location": null, "url": null, "description": "\u064a\u0627\u0631\u0628 \u0646\u0633\u0627\u0641\u0631", "translator_type": "none", "protected": false, "verified": false, "followers_count": 404245, "friends_count": 146817, "listed_count": 419, "favourites_count": 2752, "statuses_count": 36795, "created_at": "Fri Oct 19 16:17:05 +0000 2012", "utc_offset": 10800, "time_zone": "Athens", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/464159962877267968/fezWVcQN_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/464159962877267968/fezWVcQN_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/891295212/1386328341", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106907480064, "id_str": "910976106907480064", "text": "jajajajajaj migue #DeLaPrimaveraAmo", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2873079965, "id_str": "2873079965", "name": "c\u03b1mi,,", "screen_name": "endlessvigna", "location": "{18/06/15} - {01/09/15}- {11/1", "url": null, "description": "*:\u2727realmente vale luchar por lo que uno sue\u00f1a*:\u2727 - flor vigna", "translator_type": "none", "protected": false, "verified": false, "followers_count": 11875, "friends_count": 1006, "listed_count": 4, "favourites_count": 36822, "statuses_count": 65613, "created_at": "Tue Nov 11 23:28:33 +0000 2014", "utc_offset": -10800, "time_zone": "Buenos Aires", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/661263010401505281/5Z9WhGba.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/661263010401505281/5Z9WhGba.png", "profile_background_tile": true, "profile_link_color": "000000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909495776161779712/R37cuy_p_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909495776161779712/R37cuy_p_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2873079965/1505167045", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "DeLaPrimaveraAmo", "indices": [18, 35]}], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603661"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915753985, "id_str": "910976106915753985", "text": "RT @med56_bot: \u300a\u540d\u8a00\u300b\u300c\u904e\u53bb\u554f\u304b\u3089\u554f\u984c\u304c\u51fa\u306a\u3044\u306a\u3089\u3001\u307f\u3093\u306a\u6b7b\u306c\u3057\u304b\u306a\u3044\u3058\u3083\u306a\u3044\uff01\uff01\u3000\u3042\u306a\u305f\u3082\u3001\u79c1\u3082\u2026\u300d\uff0d\u5df4\u30de\u30df https://t.co/Qk4vyzre6D", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 751282735289733122, "id_str": "751282735289733122", "name": "\u305f\u3060\u306e\u8089\u584a", "screen_name": "nickaiX", "location": "\u5b50\u5bae", "url": null, "description": "\u30d1\u30a4\u30d1\u30f3\u30de\u30f3\u3068\u7d19\u30ca\u30d7\u30ad\u30f3", "translator_type": "none", "protected": false, "verified": false, "followers_count": 329, "friends_count": 284, "listed_count": 13, "favourites_count": 29430, "statuses_count": 30137, "created_at": "Fri Jul 08 05:12:17 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/902236626637561856/6ZfrjHdl_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/902236626637561856/6ZfrjHdl_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/751282735289733122/1484881814", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Feb 20 10:13:48 +0000 2017", "id": 833620663260688384, "id_str": "833620663260688384", "text": "\u300a\u540d\u8a00\u300b\u300c\u904e\u53bb\u554f\u304b\u3089\u554f\u984c\u304c\u51fa\u306a\u3044\u306a\u3089\u3001\u307f\u3093\u306a\u6b7b\u306c\u3057\u304b\u306a\u3044\u3058\u3083\u306a\u3044\uff01\uff01\u3000\u3042\u306a\u305f\u3082\u3001\u79c1\u3082\u2026\u300d\uff0d\u5df4\u30de\u30df https://t.co/Qk4vyzre6D", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 394895164, "id_str": "394895164", "name": "\u533b\u5b66\u8a9e\u5442\u306a\u3046", "screen_name": "med56_bot", "location": "Langerhans\u5cf6\uff08\u4f53\u5185\uff09", "url": "http://medillust.net/med56", "description": "\u533b\u5b66\u306b\u95a2\u3059\u308b\u8a9e\u5442\u5408\u308f\u305b\u3092\uff11\u6642\u9593\u306b\uff11\u56de\u3064\u3076\u3084\u304f\u4ed5\u69d8\u3002TL\u306b\u6d41\u3057\u3066\u304a\u3051\u3070\u697d\u3057\u304f\u6697\u8a18\u3067\u304d\u308b\u304b\u3082\uff01\u304a\u4e0b\u54c1\u30cd\u30bf\u304c\u3042\u308b\u306e\u3067\u82e6\u624b\u306a\u4eba\u306f\u5fa1\u6ce8\u610f\u3092\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 47339, "friends_count": 42766, "listed_count": 939, "favourites_count": 661, "statuses_count": 52868, "created_at": "Thu Oct 20 20:03:03 +0000 2011", "utc_offset": -36000, "time_zone": "Hawaii", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "DBE9ED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": false, "profile_link_color": "CC3366", "profile_sidebar_border_color": "DBE9ED", "profile_sidebar_fill_color": "E6F6F9", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/495391170361430017/eUbUvmRf_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/495391170361430017/eUbUvmRf_normal.png", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 16, "favorite_count": 19, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [49, 72], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "extended_entities": {"media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [49, 72], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "med56_bot", "name": "\u533b\u5b66\u8a9e\u5442\u306a\u3046", "id": 394895164, "id_str": "394895164", "indices": [3, 13]}], "symbols": [], "media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [64, 87], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "extended_entities": {"media": [{"id": 381871791506862080, "id_str": "381871791506862080", "indices": [64, 87], "media_url": "http://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "media_url_https": "https://pbs.twimg.com/media/BUyuXwKCMAAs_QT.jpg", "url": "https://t.co/Qk4vyzre6D", "display_url": "pic.twitter.com/Qk4vyzre6D", "expanded_url": "https://twitter.com/med56_bot/status/381871791662059521/photo/1", "type": "photo", "sizes": {"large": {"w": 297, "h": 170, "resize": "fit"}, "small": {"w": 297, "h": 170, "resize": "fit"}, "medium": {"w": 297, "h": 170, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 381871791662059521, "source_status_id_str": "381871791662059521", "source_user_id": 394895164, "source_user_id_str": "394895164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106894897152, "id_str": "910976106894897152", "text": "RT @muariix: @oopsmymuffins czy magia i r\u00f3\u017cne si\u0142y nadprzyrodzone istniej\u0105, a ludzie zwi\u0105zani z tym sie tak dobrze ukrywaj\u0105?", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 754224246260400128, "id_str": "754224246260400128", "name": "habilidad \ub098\ube44", "screen_name": "rosesforagatka", "location": "Badlands", "url": null, "description": "secrets I have held in my heart are harder to hide than I thought, maybe I just wanna be yours///5SOS//BTS", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2018, "friends_count": 3434, "listed_count": 5, "favourites_count": 21324, "statuses_count": 27638, "created_at": "Sat Jul 16 08:00:48 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pl", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "996699", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909514643743412225/CW3ogomJ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909514643743412225/CW3ogomJ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/754224246260400128/1503673728", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 09 14:03:28 +0000 2017", "id": 884050374893735937, "id_str": "884050374893735937", "text": "@oopsmymuffins czy magia i r\u00f3\u017cne si\u0142y nadprzyrodzone istniej\u0105, a ludzie zwi\u0105zani z tym sie tak dobrze ukrywaj\u0105?", "display_text_range": [15, 111], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 883823865083965440, "in_reply_to_status_id_str": "883823865083965440", "in_reply_to_user_id": 883708155640918016, "in_reply_to_user_id_str": "883708155640918016", "in_reply_to_screen_name": "muariix", "user": {"id": 883708155640918016, "id_str": "883708155640918016", "name": "muarii", "screen_name": "muariix", "location": "Poland", "url": null, "description": "one direction is literally the worlds biggest boyband yet i still feel like those bitches r underrated 170417", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2106, "friends_count": 1859, "listed_count": 2, "favourites_count": 10123, "statuses_count": 5505, "created_at": "Sat Jul 08 15:23:37 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909163188893179905/yZlOD_TS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909163188893179905/yZlOD_TS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/883708155640918016/1505596372", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 15, "reply_count": 16, "retweet_count": 858, "favorite_count": 427, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pl"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "muariix", "name": "muarii", "id": 883708155640918016, "id_str": "883708155640918016", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pl", "timestamp_ms": "1506028603658"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890743808, "id_str": "910976106890743808", "text": "@WhatBuilding the Pantheon, surely?", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 515418453, "in_reply_to_user_id_str": "515418453", "in_reply_to_screen_name": "WhatBuilding", "user": {"id": 3293933159, "id_str": "3293933159", "name": "Frank Walden", "screen_name": "WaldenFrancis", "location": "Brixton, London", "url": null, "description": "Londoner, saxophone player, amateur wine, cricket & architecture bore.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 410, "friends_count": 420, "listed_count": 1, "favourites_count": 605, "statuses_count": 571, "created_at": "Fri May 22 11:54:27 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/811961316969693185/uN1IeDN1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/811961316969693185/uN1IeDN1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3293933159/1482421639", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "WhatBuilding", "name": "What Building?", "id": 515418453, "id_str": "515418453", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106907541504, "id_str": "910976106907541504", "text": "RT @mbachelet: La Junta Asesora de la ONU sobre Mediaci\u00f3n a la que me han invitado a integrarme es voluntaria, no remunerada y su labor ser\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 70735009, "id_str": "70735009", "name": "KaTaRSiS", "screen_name": "mxmg", "location": "Santiago - Chile", "url": null, "description": "Una simple ciudadana", "translator_type": "none", "protected": false, "verified": false, "followers_count": 3287, "friends_count": 2850, "listed_count": 56, "favourites_count": 1627, "statuses_count": 38779, "created_at": "Tue Sep 01 17:29:38 +0000 2009", "utc_offset": -10800, "time_zone": "Buenos Aires", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/60450041/mqblownaway.br.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/60450041/mqblownaway.br.jpg", "profile_background_tile": false, "profile_link_color": "6A6834", "profile_sidebar_border_color": "6A6834", "profile_sidebar_fill_color": "F3EA05", "profile_text_color": "111111", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/891852429289025536/1XkrM-QC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/891852429289025536/1XkrM-QC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/70735009/1501442567", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:25:11 +0000 2017", "id": 910963139235270659, "id_str": "910963139235270659", "text": "La Junta Asesora de la ONU sobre Mediaci\u00f3n a la que me han invitado a integrarme es voluntaria, no remunerada y su labor ser\u00e1 remota.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4119914644, "id_str": "4119914644", "name": "Michelle Bachelet", "screen_name": "mbachelet", "location": "Santiago, Chile", "url": null, "description": "Presidenta de Chile", "translator_type": "none", "protected": false, "verified": true, "followers_count": 250470, "friends_count": 121, "listed_count": 500, "favourites_count": 9, "statuses_count": 346, "created_at": "Thu Nov 05 14:20:16 +0000 2015", "utc_offset": -10800, "time_zone": "Santiago", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/824343903776239616/Fiux2ToR_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/824343903776239616/Fiux2ToR_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4119914644/1475836798", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 47, "reply_count": 82, "retweet_count": 334, "favorite_count": 558, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "mbachelet", "name": "Michelle Bachelet", "id": 4119914644, "id_str": "4119914644", "indices": [3, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603661"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924298240, "id_str": "910976106924298240", "text": "RT @geh_fla: Ontem foi um sil\u00eancio t\u00e3o grande na rua que parecia que o Botafogo tinha sido campe\u00e3o", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 51391967, "id_str": "51391967", "name": "Aloisio Villar", "screen_name": "aloisiovillar", "location": null, "url": "http://www.aloisiovillar.blogspot.com", "description": "Ator de filme porn\u00f4 gospel, cantor de funk universit\u00e1rio, dono de boca de fumo macrobi\u00f3tica e autor do best seller 50 tons de cor de burro quando foge. \u00c9 nois!!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1375, "friends_count": 823, "listed_count": 25, "favourites_count": 3590, "statuses_count": 172043, "created_at": "Sat Jun 27 09:05:09 +0000 2009", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/806713997/0dc402d4f81fd02c241d50cd7b74f29f.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/806713997/0dc402d4f81fd02c241d50cd7b74f29f.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/807311045006069761/2rGvYGVv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/807311045006069761/2rGvYGVv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/51391967/1463775647", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:47:39 +0000 2017", "id": 910938592297529345, "id_str": "910938592297529345", "text": "Ontem foi um sil\u00eancio t\u00e3o grande na rua que parecia que o Botafogo tinha sido campe\u00e3o", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2590260314, "id_str": "2590260314", "name": "GEHderson", "screen_name": "geh_fla", "location": null, "url": "http://gehfla10.sarahah.com", "description": "O perfil da #equipegeh e das #piadasgeh", "translator_type": "none", "protected": false, "verified": false, "followers_count": 7100, "friends_count": 566, "listed_count": 45, "favourites_count": 5788, "statuses_count": 81636, "created_at": "Thu Jun 26 20:59:31 +0000 2014", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "E80E20", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/482534415323516928/6VcYl2iG.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/482534415323516928/6VcYl2iG.jpeg", "profile_background_tile": true, "profile_link_color": "7AC0D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/895048458607964160/dPPkDpd2_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/895048458607964160/dPPkDpd2_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2590260314/1456932924", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 1, "retweet_count": 2, "favorite_count": 14, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "geh_fla", "name": "GEHderson", "id": 2590260314, "id_str": "2590260314", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890657792, "id_str": "910976106890657792", "text": "RT @WangDiary: Got7 tem:\ncantor\nator\ncompositor\nMc\nRapper\nM\u00e3e\nM\u00e1gico\nVisual\nE tudo isso \u00e9 s\u00f3 o Jinyoung\n#PrinceJinyoungDay https://t.co/QH0\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3207564515, "id_str": "3207564515", "name": "\u03b7y\u03b1 \u0b6d\u0325\u00b0", "screen_name": "byunwhy", "location": "kath \u2661 let\u00edcia \u2661 paula \u2661 gi \u2661", "url": "https://curiouscat.me/mins3ok", "description": "mil cair\u00e3o ao seu lado, dez mil \u00e0 sua direita, mas got7 o atingir\u00e1", "translator_type": "none", "protected": false, "verified": false, "followers_count": 968, "friends_count": 472, "listed_count": 8, "favourites_count": 329, "statuses_count": 40460, "created_at": "Sat Apr 25 23:16:00 +0000 2015", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFCC4D", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/637605242826305536/If1lTR-7.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/637605242826305536/If1lTR-7.png", "profile_background_tile": true, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910634832291545089/_JRtARTm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910634832291545089/_JRtARTm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3207564515/1505263093", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:06:48 +0000 2017", "id": 910898113451364352, "id_str": "910898113451364352", "text": "Got7 tem:\ncantor\nator\ncompositor\nMc\nRapper\nM\u00e3e\nM\u00e1gico\nVisual\nE tudo isso \u00e9 s\u00f3 o Jinyoung\n#PrinceJinyoungDay https://t.co/QH0CymKWqI", "display_text_range": [0, 107], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 818258087287156737, "id_str": "818258087287156737", "name": "Jack loves Jinyoung", "screen_name": "WangDiary", "location": "To na Tuan ", "url": null, "description": "Cuidando e protegendo minhas ahgases \ud83d\udc25\ud83d\udc9a\u2618 wild and sexy - DAB7 DIARIES - Parcerias: @AhgaseSquad e @Mysunshinebr", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2344, "friends_count": 128, "listed_count": 9, "favourites_count": 6624, "statuses_count": 4807, "created_at": "Mon Jan 09 00:48:25 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909962247782506497/7cj_xlVy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909962247782506497/7cj_xlVy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/818258087287156737/1505835861", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 246, "favorite_count": 241, "entities": {"hashtags": [{"text": "PrinceJinyoungDay", "indices": [89, 107]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910898105230520320, "id_str": "910898105230520320", "indices": [108, 131], "media_url": "http://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "url": "https://t.co/QH0CymKWqI", "display_url": "pic.twitter.com/QH0CymKWqI", "expanded_url": "https://twitter.com/WangDiary/status/910898113451364352/photo/1", "type": "photo", "sizes": {"large": {"w": 500, "h": 750, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 500, "h": 750, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910898105230520320, "id_str": "910898105230520320", "indices": [108, 131], "media_url": "http://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQpACTXcAAzomP.jpg", "url": "https://t.co/QH0CymKWqI", "display_url": "pic.twitter.com/QH0CymKWqI", "expanded_url": "https://twitter.com/WangDiary/status/910898113451364352/photo/1", "type": "photo", "sizes": {"large": {"w": 500, "h": 750, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 500, "h": 750, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "PrinceJinyoungDay", "indices": [104, 122]}], "urls": [], "user_mentions": [{"screen_name": "WangDiary", "name": "Jack loves Jinyoung", "id": 818258087287156737, "id_str": "818258087287156737", "indices": [3, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106928513025, "id_str": "910976106928513025", "text": "RT @ph_billboard: .@BTS_twt broke new ground for #kpop within 24 hours of releasing their music video for \u201cDNA.\u201d  https://t.co/O2xoBQ6yHN", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2885616181, "id_str": "2885616181", "name": "illegal \ud83d\udc30\ud83c\udf38", "screen_name": "nochusheart", "location": "insta: nochusbun", "url": "http://jeonnguks.tumblr.com", "description": "nik. \u2764\ufe0f \uc0ac\ub791\uc544 \uc815\uad6d\ud574. actual bun. my heart boomboom. \ud83c\udf08 170323. 4\uae30. Did you see my bag?", "translator_type": "none", "protected": false, "verified": false, "followers_count": 434, "friends_count": 117, "listed_count": 12, "favourites_count": 19108, "statuses_count": 56717, "created_at": "Fri Oct 31 19:50:42 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ACDED6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586716527988056064/IZkhJi2v.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586716527988056064/IZkhJi2v.jpg", "profile_background_tile": true, "profile_link_color": "E391FF", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910918095996256256/g26BffTX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910918095996256256/g26BffTX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2885616181/1505752752", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 04:30:01 +0000 2017", "id": 910722760678113280, "id_str": "910722760678113280", "text": ".@BTS_twt broke new ground for #kpop within 24 hours of releasing their music video for \u201cDNA.\u201d  https://t.co/O2xoBQ6yHN", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 725599416904622080, "id_str": "725599416904622080", "name": "BillboardPH", "screen_name": "ph_billboard", "location": "Republic of the Philippines", "url": "http://billboard.ph", "description": "Your ultimate go-to for the world's most popular international and local charts, music news, videos, analysis, events, and more! Instagram: @billboard_ph", "translator_type": "none", "protected": false, "verified": true, "followers_count": 25722, "friends_count": 329, "listed_count": 132, "favourites_count": 1209, "statuses_count": 7528, "created_at": "Thu Apr 28 08:15:56 +0000 2016", "utc_offset": 28800, "time_zone": "Singapore", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/737126941426257920/AxguDfz1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/737126941426257920/AxguDfz1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/725599416904622080/1497248594", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 21, "retweet_count": 2075, "favorite_count": 3714, "entities": {"hashtags": [{"text": "kpop", "indices": [31, 36]}], "urls": [{"url": "https://t.co/O2xoBQ6yHN", "expanded_url": "http://billboard.ph/bts-smashes-k-pop-records-dna-music-video/", "display_url": "billboard.ph/bts-smashes-k-\u2026", "indices": [96, 119]}], "user_mentions": [{"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [1, 9]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "kpop", "indices": [49, 54]}], "urls": [{"url": "https://t.co/O2xoBQ6yHN", "expanded_url": "http://billboard.ph/bts-smashes-k-pop-records-dna-music-video/", "display_url": "billboard.ph/bts-smashes-k-\u2026", "indices": [114, 137]}], "user_mentions": [{"screen_name": "ph_billboard", "name": "BillboardPH", "id": 725599416904622080, "id_str": "725599416904622080", "indices": [3, 16]}, {"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [19, 27]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603666"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106924331011, "id_str": "910976106924331011", "text": "RT @callpurnia: sera que vamo ter uma cena da joyce ou de alguem penteando o cabelo da eleven ou ate msm o mike\ud83d\ude0d#ilusao", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4384032017, "id_str": "4384032017", "name": "\ud83d\udda4Bolinho G\u00f3tico \ud83d\udda4", "screen_name": "GoticoBolinho", "location": "Mike's Basement", "url": null, "description": "U became my life.\nMy light.\nMy promise.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 315, "friends_count": 108, "listed_count": 5, "favourites_count": 24754, "statuses_count": 17328, "created_at": "Sat Dec 05 14:53:39 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/907400535543861249/-nOWGVer_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907400535543861249/-nOWGVer_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4384032017/1505333054", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:55:42 +0000 2017", "id": 910970817802063872, "id_str": "910970817802063872", "text": "sera que vamo ter uma cena da joyce ou de alguem penteando o cabelo da eleven ou ate msm o mike\ud83d\ude0d#ilusao", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 941678664, "id_str": "941678664", "name": "jessy", "screen_name": "callpurnia", "location": "r n t \u2766", "url": null, "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 18272, "friends_count": 105, "listed_count": 116, "favourites_count": 320, "statuses_count": 205892, "created_at": "Sun Nov 11 16:42:03 +0000 2012", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543395138311946242/rakeqsYa.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543395138311946242/rakeqsYa.jpeg", "profile_background_tile": false, "profile_link_color": "000000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "FFF7CC", "profile_text_color": "0C3E53", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910878401162092544/GJdmXrv5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910878401162092544/GJdmXrv5_normal.jpg", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 0, "retweet_count": 6, "favorite_count": 0, "entities": {"hashtags": [{"text": "ilusao", "indices": [96, 103]}], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "ilusao", "indices": [112, 119]}], "urls": [], "user_mentions": [{"screen_name": "callpurnia", "name": "jessy", "id": 941678664, "id_str": "941678664", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028603665"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890702848, "id_str": "910976106890702848", "text": "RT @HistoriaEnFotos: Los h\u00e9roes que merecen todo nuestro apoyo y admiraci\u00f3n #perrosrescatistas \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\n\nhttps://t.co/IdQiVBSUPJ", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 380493352, "id_str": "380493352", "name": "alex", "screen_name": "brujasolar", "location": null, "url": null, "description": null, "translator_type": "regular", "protected": false, "verified": false, "followers_count": 20167, "friends_count": 11826, "listed_count": 47, "favourites_count": 34176, "statuses_count": 111814, "created_at": "Mon Sep 26 18:56:45 +0000 2011", "utc_offset": -18000, "time_zone": "Bogota", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/813254363/97e3e52cbda17ee42f1f609a8686b881.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/813254363/97e3e52cbda17ee42f1f609a8686b881.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "114AAD", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/909454813120929792/1l9c8tLw_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909454813120929792/1l9c8tLw_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/380493352/1505949965", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:40:06 +0000 2017", "id": 910906493515571201, "id_str": "910906493515571201", "text": "Los h\u00e9roes que merecen todo nuestro apoyo y admiraci\u00f3n #perrosrescatistas \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffb\n\nhttps://t.co/IdQiVBSUPJ", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1073159618, "id_str": "1073159618", "name": "Im\u00e1genes Hist\u00f3ricas", "screen_name": "HistoriaEnFotos", "location": "\u00abPrimera cuenta en Espa\u00f1ol\u00bb", "url": null, "description": "\u00abFotograf\u00edas e im\u00e1genes que marcaron la historia de la humanidad. Momentos \u00fanicos e irrepetibles.\u00bb Publicidad: contactohistorico@gmail.com", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 583468, "friends_count": 1, "listed_count": 1900, "favourites_count": 1406, "statuses_count": 11283, "created_at": "Wed Jan 09 08:13:28 +0000 2013", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "709397", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_tile": false, "profile_link_color": "FF3300", "profile_sidebar_border_color": "86A4A6", "profile_sidebar_fill_color": "A0C5C7", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/3777882002/deb22319eedad83bbdeb9bd140762c20_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3777882002/deb22319eedad83bbdeb9bd140762c20_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1073159618/1408765634", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 224, "reply_count": 62, "retweet_count": 3512, "favorite_count": 5893, "entities": {"hashtags": [{"text": "perrosrescatistas", "indices": [55, 73]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892"}]}, "extended_entities": {"media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "video", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 84017, "variants": [{"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/320x180/0DVD6GghBHbUV4GC.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/640x360/EbHGbTK5DzX7RzLZ.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/pl/srXXWun6hGbmquFf.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "perrosrescatistas", "indices": [76, 94]}], "urls": [], "user_mentions": [{"screen_name": "HistoriaEnFotos", "name": "Im\u00e1genes Hist\u00f3ricas", "id": 1073159618, "id_str": "1073159618", "indices": [3, 19]}], "symbols": [], "media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [101, 124], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892"}]}, "extended_entities": {"media": [{"id": 910884039543939072, "id_str": "910884039543939072", "indices": [101, 124], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910884039543939072/pu/img/bI62lL9XcWOvx1hG.jpg", "url": "https://t.co/IdQiVBSUPJ", "display_url": "pic.twitter.com/IdQiVBSUPJ", "expanded_url": "https://twitter.com/SEMAR_mx/status/910884425235300352/video/1", "type": "video", "sizes": {"large": {"w": 960, "h": 540, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}}, "source_status_id": 910884425235300352, "source_status_id_str": "910884425235300352", "source_user_id": 246485892, "source_user_id_str": "246485892", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 84017, "variants": [{"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/320x180/0DVD6GghBHbUV4GC.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/vid/640x360/EbHGbTK5DzX7RzLZ.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910884039543939072/pu/pl/srXXWun6hGbmquFf.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106899140613, "id_str": "910976106899140613", "text": "@ishawky_ 19", "display_text_range": [10, 12], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910975751847018496, "in_reply_to_status_id_str": "910975751847018496", "in_reply_to_user_id": 304401592, "in_reply_to_user_id_str": "304401592", "in_reply_to_screen_name": "ishawky_", "user": {"id": 878104040508469248, "id_str": "878104040508469248", "name": "\u0642\u064a\u0635\u0631 .. \ud83c\uddf8\ud83c\udde6", "screen_name": "tarjim_w", "location": null, "url": null, "description": "\u200f\u200f#\u0631\u064a\u0628\u0631\u0648\u0641_\u0627\u0644\u0645\u062c\u062f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 61, "friends_count": 919, "listed_count": 0, "favourites_count": 17, "statuses_count": 421, "created_at": "Fri Jun 23 04:14:52 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/898026779843194880/fq7B-SNF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/898026779843194880/fq7B-SNF_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "ishawky_", "name": "\u0627\u0644\u062c\u064a\u0646\u064a\u0635", "id": 304401592, "id_str": "304401592", "indices": [0, 9]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603659"}
{"delete": {"status": {"id": 909471127726108674, "id_str": "909471127726108674", "user_id": 3126284391, "user_id_str": "3126284391"}, "timestamp_ms": "1506028603883"}}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106899099648, "id_str": "910976106899099648", "text": "RT @AlbanoDante76: El dia 1-O el sol sortir\u00e0 a les 7:48 i jo anir\u00e9 a votar aqu\u00ed. https://t.co/hbIEP0jWoG", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1048111723, "id_str": "1048111723", "name": "Filumestre-Rep\u00fablica", "screen_name": "filumestre", "location": "PPCC - Principat", "url": null, "description": "All\u00f2 que val \u00e9s la consci\u00e8ncia de no \u00e9sser res si no s'\u00e9s poble.  Algun dia no podrem m\u00e9s i aleshores ho podrem tot. (Vicent Andr\u00e9s Estell\u00e9s)", "translator_type": "none", "protected": false, "verified": false, "followers_count": 937, "friends_count": 1888, "listed_count": 43, "favourites_count": 27070, "statuses_count": 104681, "created_at": "Sun Dec 30 15:06:45 +0000 2012", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": false, "lang": "ca", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/897438485359067137/As4BR417_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897438485359067137/As4BR417_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1048111723/1486327878", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:55:42 +0000 2017", "id": 910970817579814913, "id_str": "910970817579814913", "text": "El dia 1-O el sol sortir\u00e0 a les 7:48 i jo anir\u00e9 a votar aqu\u00ed. https://t.co/hbIEP0jWoG", "display_text_range": [0, 61], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 91560739, "id_str": "91560739", "name": "Albano-Dante Fachin", "screen_name": "AlbanoDante76", "location": "Girona", "url": "http://www.albanodante.net", "description": "Abans, lluitant des del http://cafeambllet.com. Ara faig de diputat al Parlament de Catalunya i de Secretari General de Podem Catalunya, Contracte temporal.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 43009, "friends_count": 3188, "listed_count": 852, "favourites_count": 15725, "statuses_count": 53930, "created_at": "Sat Nov 21 12:20:23 +0000 2009", "utc_offset": -7200, "time_zone": "Greenland", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/290299269/cafeambllet_petit.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/290299269/cafeambllet_petit.jpg", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/858405689617596416/MGGHZ1YT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/858405689617596416/MGGHZ1YT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/91560739/1460896216", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 4, "reply_count": 12, "retweet_count": 109, "favorite_count": 249, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [62, 85], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [62, 85], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "AlbanoDante76", "name": "Albano-Dante Fachin", "id": 91560739, "id_str": "91560739", "indices": [3, 17]}], "symbols": [], "media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [81, 104], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}, "source_status_id": 910970817579814913, "source_status_id_str": "910970817579814913", "source_user_id": 91560739, "source_user_id_str": "91560739"}]}, "extended_entities": {"media": [{"id": 910970810231410688, "id_str": "910970810231410688", "indices": [81, 104], "media_url": "http://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIBiX0AA2LOW.jpg", "url": "https://t.co/hbIEP0jWoG", "display_url": "pic.twitter.com/hbIEP0jWoG", "expanded_url": "https://twitter.com/AlbanoDante76/status/910970817579814913/photo/1", "type": "photo", "sizes": {"medium": {"w": 750, "h": 726, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 658, "resize": "fit"}, "large": {"w": 750, "h": 726, "resize": "fit"}}, "source_status_id": 910970817579814913, "source_status_id_str": "910970817579814913", "source_user_id": 91560739, "source_user_id_str": "91560739"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603659"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106919993344, "id_str": "910976106919993344", "text": "This can't be called the Trump ERA This is a Trump BLIP. It's a blip in time that needs to end sooner than later. https://t.co/mH3efe8X47", "display_text_range": [0, 113], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 985418670, "id_str": "985418670", "name": "Jet Divots", "screen_name": "JetDivots", "location": null, "url": null, "description": "Speak my mind, too old not to. Agree with common sense. Love dogs, Doctor Who, and New Mexico.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 30, "friends_count": 116, "listed_count": 0, "favourites_count": 508, "statuses_count": 319, "created_at": "Sun Dec 02 21:38:12 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_tile": false, "profile_link_color": "FF691F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/904451921632681985/SltQ4SHE_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904451921632681985/SltQ4SHE_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/985418670/1503895965", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910972404142182401, "quoted_status_id_str": "910972404142182401", "quoted_status": {"created_at": "Thu Sep 21 21:02:00 +0000 2017", "id": 910972404142182401, "id_str": "910972404142182401", "text": "Pentagon military officers once spoke openly about security threats posed by climate change. Then Trump came to DC. https://t.co/pdKk7rz7E8", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15667291, "id_str": "15667291", "name": "BillMoyers.com", "screen_name": "BillMoyers", "location": null, "url": "http://www.billmoyers.com", "description": "Making sense of what matters. Tweets from the producers & occasionally Bill Moyers (/BM). http://www.billmoyers.com", "translator_type": "none", "protected": false, "verified": true, "followers_count": 157409, "friends_count": 1266, "listed_count": 4458, "favourites_count": 470, "statuses_count": 26723, "created_at": "Wed Jul 30 22:35:38 +0000 2008", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/884865465922842624/c6EQtnhh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/884865465922842624/c6EQtnhh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15667291/1487792313", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1, "reply_count": 0, "retweet_count": 22, "favorite_count": 35, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/pdKk7rz7E8", "expanded_url": "http://bit.ly/2xT3z4E", "display_url": "bit.ly/2xT3z4E", "indices": [116, 139]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/mH3efe8X47", "expanded_url": "https://twitter.com/BillMoyers/status/910972404142182401", "display_url": "twitter.com/BillMoyers/sta\u2026", "indices": [114, 137]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603664"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915917825, "id_str": "910976106915917825", "text": "RT @OGTVLoL: La saison r\u00e9guli\u00e8re est termin\u00e9e pour ce summer split 2017 des #Underdogs, mais les playoffs arrivent bient\u00f4t ! \ud83d\ude0e https://t.co\u2026", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1889626184, "id_str": "1889626184", "name": "Jorys", "screen_name": "Maveur", "location": "France - Avignon", "url": "https://www.twitch.tv/Maveur_LoL", "description": "Joueur LoL, H1Z1 et CSGO | 19 yo | BTS SIO SLAM 2eme Ann\u00e9e | Aime la culture jap' | R\u00e9dac' pour @Eclypsia_LoL", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 327, "friends_count": 148, "listed_count": 39, "favourites_count": 39316, "statuses_count": 42808, "created_at": "Sat Sep 21 09:47:06 +0000 2013", "utc_offset": 7200, "time_zone": "Paris", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "89C9FA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/552483537421467648/bSFilOWM.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/552483537421467648/bSFilOWM.jpeg", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904403002852769792/MKnQSAYV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904403002852769792/MKnQSAYV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1889626184/1440154127", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:14:13 +0000 2017", "id": 910975478755938305, "id_str": "910975478755938305", "text": "La saison r\u00e9guli\u00e8re est termin\u00e9e pour ce summer split 2017 des #Underdogs, mais les playoffs arrivent bient\u00f4t ! \ud83d\ude0e https://t.co/BggVXdpPU5", "display_text_range": [0, 113], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 500903925, "id_str": "500903925", "name": "O'Gaming LoL", "screen_name": "OGTVLoL", "location": "Paris", "url": "http://www.OGaming.tv", "description": "Retrouvez toute l'actualit\u00e9, les \u00e9missions et comp\u00e9titions League Of Legends avec le crew O'Gaming ! #OGLOL http://www.ogaming.tv/stream/league-of-legends", "translator_type": "none", "protected": false, "verified": false, "followers_count": 54453, "friends_count": 420, "listed_count": 152, "favourites_count": 6793, "statuses_count": 18744, "created_at": "Thu Feb 23 15:54:16 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/896086842520604672/wKW4b78C_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896086842520604672/wKW4b78C_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/500903925/1477936054", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 1, "retweet_count": 2, "favorite_count": 4, "entities": {"hashtags": [{"text": "Underdogs", "indices": [63, 73]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910975268143222787, "id_str": "910975268143222787", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "url": "https://t.co/BggVXdpPU5", "display_url": "pic.twitter.com/BggVXdpPU5", "expanded_url": "https://twitter.com/OGTVLoL/status/910975478755938305/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1916, "h": 1080, "resize": "fit"}, "medium": {"w": 1200, "h": 676, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910975268143222787, "id_str": "910975268143222787", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvLgjX0AM2ph8.jpg", "url": "https://t.co/BggVXdpPU5", "display_url": "pic.twitter.com/BggVXdpPU5", "expanded_url": "https://twitter.com/OGTVLoL/status/910975478755938305/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1916, "h": 1080, "resize": "fit"}, "medium": {"w": 1200, "h": 676, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "Underdogs", "indices": [76, 86]}], "urls": [], "user_mentions": [{"screen_name": "OGTVLoL", "name": "O'Gaming LoL", "id": 500903925, "id_str": "500903925", "indices": [3, 11]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "fr", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915880964, "id_str": "910976106915880964", "text": "RT @diggy_simmons: Selective with the energies that surround me.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 631231503, "id_str": "631231503", "name": "Dingiswayo", "screen_name": "PhilaniQ", "location": "Johannesburg ", "url": "http://phambilimzansi.co.za/wp/", "description": "Afrikan. Co-founder & Director of Phambil Mzansi IGC.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 480, "friends_count": 308, "listed_count": 6, "favourites_count": 1522, "statuses_count": 5840, "created_at": "Mon Jul 09 14:46:57 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/872235306866679809/Wm-tNpPy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/872235306866679809/Wm-tNpPy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/631231503/1438944026", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Jan 25 20:43:50 +0000 2017", "id": 824357132925566977, "id_str": "824357132925566977", "text": "Selective with the energies that surround me.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 90246174, "id_str": "90246174", "name": "Diggy", "screen_name": "diggy_simmons", "location": null, "url": null, "description": "Inquiries: Laurie@RoarMgmt.com", "translator_type": "none", "protected": false, "verified": true, "followers_count": 1718166, "friends_count": 2199, "listed_count": 7702, "favourites_count": 2, "statuses_count": 15794, "created_at": "Sun Nov 15 20:56:38 +0000 2009", "utc_offset": -28800, "time_zone": "Alaska", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "0A0A0A", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/471636112268464128/xwxvxMmQ.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/471636112268464128/xwxvxMmQ.jpeg", "profile_background_tile": false, "profile_link_color": "321952", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "8F8F8F", "profile_text_color": "050000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/894783556186247168/XvjSgf9z_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/894783556186247168/XvjSgf9z_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/90246174/1500061500", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 29, "reply_count": 5, "retweet_count": 742, "favorite_count": 709, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "diggy_simmons", "name": "Diggy", "id": 90246174, "id_str": "90246174", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106928459776, "id_str": "910976106928459776", "text": "RT @behonestmik: This part still gives me so many chills when I watch it https://t.co/qx2qFaXmxi", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1472445655, "id_str": "1472445655", "name": "dervla", "screen_name": "horanxflicker", "location": null, "url": null, "description": "@Louis_Tomlinson: @NiallOfficial where did you get your clothes from the toilet stores ??", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4121, "friends_count": 377, "listed_count": 40, "favourites_count": 27622, "statuses_count": 79549, "created_at": "Fri May 31 15:31:28 +0000 2013", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "0099B9", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/478191116387246080/O7VoBI01.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/478191116387246080/O7VoBI01.png", "profile_background_tile": true, "profile_link_color": "B80043", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/891008777117466626/G7z9HIJU_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/891008777117466626/G7z9HIJU_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1472445655/1496264947", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:58:04 +0000 2017", "id": 910911014354378752, "id_str": "910911014354378752", "text": "This part still gives me so many chills when I watch it https://t.co/qx2qFaXmxi", "display_text_range": [0, 55], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 740056335216037889, "id_str": "740056335216037889", "name": "Mikaylah", "screen_name": "behonestmik", "location": "Canada", "url": null, "description": "18 | \ud83e\udd40", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5023, "friends_count": 300, "listed_count": 170, "favourites_count": 27522, "statuses_count": 14097, "created_at": "Tue Jun 07 05:42:34 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910036013791055872/jZCGQ0_y_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910036013791055872/jZCGQ0_y_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/740056335216037889/1502500177", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 5, "reply_count": 2, "retweet_count": 32, "favorite_count": 135, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [56, 79], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "photo", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [56, 79], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "animated_gif", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}, "video_info": {"aspect_ratio": [249, 100], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/DKQ0uxdUMAA81vC.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "behonestmik", "name": "Mikaylah", "id": 740056335216037889, "id_str": "740056335216037889", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [73, 96], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "photo", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}, "source_status_id": 910911014354378752, "source_status_id_str": "910911014354378752", "source_user_id": 740056335216037889, "source_user_id_str": "740056335216037889"}]}, "extended_entities": {"media": [{"id": 910911002790604800, "id_str": "910911002790604800", "indices": [73, 96], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKQ0uxdUMAA81vC.jpg", "url": "https://t.co/qx2qFaXmxi", "display_url": "pic.twitter.com/qx2qFaXmxi", "expanded_url": "https://twitter.com/behonestmik/status/910911014354378752/photo/1", "type": "animated_gif", "sizes": {"medium": {"w": 498, "h": 200, "resize": "fit"}, "large": {"w": 498, "h": 200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 340, "h": 137, "resize": "fit"}}, "source_status_id": 910911014354378752, "source_status_id_str": "910911014354378752", "source_user_id": 740056335216037889, "source_user_id_str": "740056335216037889", "video_info": {"aspect_ratio": [249, 100], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/DKQ0uxdUMAA81vC.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603666"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106890588161, "id_str": "910976106890588161", "text": "RT @ChrisMurphyCT: Oh. My. God.\n\n(Commonwealth is non-partisan, respected) https://t.co/bBnocLTWxT", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 752347062654504960, "id_str": "752347062654504960", "name": "BrienneofTarth", "screen_name": "BrienneResister", "location": "Northern California", "url": null, "description": "Oathkeeper. Champion. Defender against evil and all vile Trumpism. Defeater of Nazis. I don't tolerate bots or s**t stirrers. #GoTResists #TheResistance #FBR", "translator_type": "none", "protected": false, "verified": false, "followers_count": 701, "friends_count": 881, "listed_count": 1, "favourites_count": 2227, "statuses_count": 3679, "created_at": "Mon Jul 11 03:41:32 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/896178753520271360/NFGX052w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896178753520271360/NFGX052w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/752347062654504960/1502681521", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:07:55 +0000 2017", "id": 910943694261506048, "id_str": "910943694261506048", "text": "Oh. My. God.\n\n(Commonwealth is non-partisan, respected) https://t.co/bBnocLTWxT", "display_text_range": [0, 55], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 150078976, "id_str": "150078976", "name": "Chris Murphy", "screen_name": "ChrisMurphyCT", "location": null, "url": "https://chrismurphy.com/", "description": "U.S. Senator, Connecticut.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 376430, "friends_count": 179, "listed_count": 3714, "favourites_count": 879, "statuses_count": 14809, "created_at": "Mon May 31 01:22:43 +0000 2010", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/871076844904361985/7NorOQHB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/871076844904361985/7NorOQHB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/150078976/1493845670", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910528446195011585, "quoted_status_id_str": "910528446195011585", "quoted_status": {"created_at": "Wed Sep 20 15:37:53 +0000 2017", "id": 910528446195011585, "id_str": "910528446195011585", "text": "JUST RELEASED: 32 million to lose coverage under Graham-Cassidy ACA repeal.\n\nhttps://t.co/4wq0OHp7a3", "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1383272101, "id_str": "1383272101", "name": "Andy Slavitt", "screen_name": "ASlavitt", "location": "Edina, MN and Washington, DC", "url": null, "description": "Ran Medicare, Medicaid & ACA for President Obama. @bpc_bipartisan, Senior Advisor. @usatoday, Columnist. Future of Healthcare, co-chair. Opinions mine.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 139760, "friends_count": 493, "listed_count": 1966, "favourites_count": 12901, "statuses_count": 13753, "created_at": "Sat Apr 27 01:21:12 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1383272101/1500293527", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 647, "reply_count": 219, "retweet_count": 6041, "favorite_count": 3693, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4wq0OHp7a3", "expanded_url": "http://www.commonwealthfund.org/publications/blog/2017/sep/potential-effects-of-graham-cassidy", "display_url": "commonwealthfund.org/publications/b\u2026", "indices": [77, 100]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 32, "reply_count": 47, "retweet_count": 1068, "favorite_count": 1275, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/bBnocLTWxT", "expanded_url": "https://twitter.com/aslavitt/status/910528446195011585", "display_url": "twitter.com/aslavitt/statu\u2026", "indices": [56, 79]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "quoted_status_id": 910528446195011585, "quoted_status_id_str": "910528446195011585", "quoted_status": {"created_at": "Wed Sep 20 15:37:53 +0000 2017", "id": 910528446195011585, "id_str": "910528446195011585", "text": "JUST RELEASED: 32 million to lose coverage under Graham-Cassidy ACA repeal.\n\nhttps://t.co/4wq0OHp7a3", "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1383272101, "id_str": "1383272101", "name": "Andy Slavitt", "screen_name": "ASlavitt", "location": "Edina, MN and Washington, DC", "url": null, "description": "Ran Medicare, Medicaid & ACA for President Obama. @bpc_bipartisan, Senior Advisor. @usatoday, Columnist. Future of Healthcare, co-chair. Opinions mine.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 139760, "friends_count": 493, "listed_count": 1966, "favourites_count": 12901, "statuses_count": 13753, "created_at": "Sat Apr 27 01:21:12 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886914230863245312/LQAtXo7U_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1383272101/1500293527", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 647, "reply_count": 219, "retweet_count": 6041, "favorite_count": 3693, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4wq0OHp7a3", "expanded_url": "http://www.commonwealthfund.org/publications/blog/2017/sep/potential-effects-of-graham-cassidy", "display_url": "commonwealthfund.org/publications/b\u2026", "indices": [77, 100]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/bBnocLTWxT", "expanded_url": "https://twitter.com/aslavitt/status/910528446195011585", "display_url": "twitter.com/aslavitt/statu\u2026", "indices": [75, 98]}], "user_mentions": [{"screen_name": "ChrisMurphyCT", "name": "Chris Murphy", "id": 150078976, "id_str": "150078976", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603657"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106920075264, "id_str": "910976106920075264", "text": "RT @bancaynegocios: Brasil busca evitar que Venezuela incumpla pagos de contratos por hasta US$ 5.000 millones https://t.co/e3QMeUzrOB", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 184433592, "id_str": "184433592", "name": "Rafael V  Blanco Y", "screen_name": "RvBlanco", "location": "Orlando, FL", "url": null, "description": "Ing. Civil. 4077298746", "translator_type": "none", "protected": false, "verified": false, "followers_count": 836, "friends_count": 3349, "listed_count": 7, "favourites_count": 2768, "statuses_count": 6093, "created_at": "Sun Aug 29 15:03:03 +0000 2010", "utc_offset": -14400, "time_zone": "Caracas", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/857418816799870976/6rT1OdoB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/857418816799870976/6rT1OdoB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/184433592/1486412847", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:07:27 +0000 2017", "id": 910973775868563462, "id_str": "910973775868563462", "text": "Brasil busca evitar que Venezuela incumpla pagos de contratos por hasta US$ 5.000 millones https://t.co/e3QMeUzrOB", "source": "<a href=\"http://bancaynegocios.com/\" rel=\"nofollow\">BancayNegocios.com</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 104238493, "id_str": "104238493", "name": "Banca y Negocios", "screen_name": "bancaynegocios", "location": "Caracas, Venezuela", "url": "http://www.bancaynegocios.com", "description": "Portal de noticias sobre Banca, Econom\u00eda, Negocios, Gerencia, Tecnologia y m\u00e1s, en Venezuela, Latinoam\u00e9rica y el mundo", "translator_type": "none", "protected": false, "verified": false, "followers_count": 51355, "friends_count": 2492, "listed_count": 828, "favourites_count": 198, "statuses_count": 345995, "created_at": "Tue Jan 12 18:42:18 +0000 2010", "utc_offset": -14400, "time_zone": "Caracas", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000056701047/79507d0264af6607466c51a2d93758f7.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000056701047/79507d0264af6607466c51a2d93758f7.jpeg", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/818455694894571520/lrm_l07B_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/818455694894571520/lrm_l07B_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/104238493/1433429765", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/e3QMeUzrOB", "expanded_url": "http://bit.ly/2xUhk2T", "display_url": "bit.ly/2xUhk2T", "indices": [91, 114]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/e3QMeUzrOB", "expanded_url": "http://bit.ly/2xUhk2T", "display_url": "bit.ly/2xUhk2T", "indices": [111, 134]}], "user_mentions": [{"screen_name": "bancaynegocios", "name": "Banca y Negocios", "id": 104238493, "id_str": "104238493", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603664"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106911629313, "id_str": "910976106911629313", "text": "#UnaPeliRecomendableEs https://t.co/uNQJeyCohI", "display_text_range": [0, 22], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 593355484, "id_str": "593355484", "name": "thelimit35", "screen_name": "thelimit35", "location": null, "url": null, "description": "Cinefilo, amante de los comics y ciencia ficcion.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 961, "friends_count": 1005, "listed_count": 5, "favourites_count": 4621, "statuses_count": 3761, "created_at": "Tue May 29 04:27:09 +0000 2012", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/867794848618819584/JSUA-Pft_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/867794848618819584/JSUA-Pft_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/593355484/1503329266", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "UnaPeliRecomendableEs", "indices": [0, 22]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910976088641359872, "id_str": "910976088641359872", "indices": [23, 46], "media_url": "http://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "url": "https://t.co/uNQJeyCohI", "display_url": "pic.twitter.com/uNQJeyCohI", "expanded_url": "https://twitter.com/thelimit35/status/910976106911629313/photo/1", "type": "photo", "sizes": {"large": {"w": 338, "h": 475, "resize": "fit"}, "medium": {"w": 338, "h": 475, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 338, "h": 475, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976088641359872, "id_str": "910976088641359872", "indices": [23, 46], "media_url": "http://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7RJX0AASs8W.jpg", "url": "https://t.co/uNQJeyCohI", "display_url": "pic.twitter.com/uNQJeyCohI", "expanded_url": "https://twitter.com/thelimit35/status/910976106911629313/photo/1", "type": "photo", "sizes": {"large": {"w": 338, "h": 475, "resize": "fit"}, "medium": {"w": 338, "h": 475, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 338, "h": 475, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028603662"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106915942405, "id_str": "910976106915942405", "text": "RT @horrorflickss: Happy Birthday, Stephen King:\n\nCreator of Carrie, The Shining, It (and many more). https://t.co/XE4qsSjzBk", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2300850794, "id_str": "2300850794", "name": "SabrinaMonique\ud83c\udf38", "screen_name": "brinarod4897", "location": "San Diego, Texas", "url": null, "description": "How cruel of the universe to give you bright love you can't keep.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 218, "friends_count": 550, "listed_count": 0, "favourites_count": 6345, "statuses_count": 1029, "created_at": "Mon Jan 20 05:56:49 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5B1CE", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/432707759809638401/bEHkgnhX.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/432707759809638401/bEHkgnhX.jpeg", "profile_background_tile": false, "profile_link_color": "FCFEFF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/905165643858759680/TKNxbWk4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905165643858759680/TKNxbWk4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2300850794/1504477919", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:58:28 +0000 2017", "id": 910941314560208897, "id_str": "910941314560208897", "text": "Happy Birthday, Stephen King:\n\nCreator of Carrie, The Shining, It (and many more). https://t.co/XE4qsSjzBk", "display_text_range": [0, 82], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 854115402095505408, "id_str": "854115402095505408", "name": "HORROR FLICKS \ud83d\udd2a", "screen_name": "horrorflickss", "location": null, "url": null, "description": "Dedicated to the finest of the horror genre, old and new. DM us requests.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1683, "friends_count": 225, "listed_count": 7, "favourites_count": 1119, "statuses_count": 699, "created_at": "Mon Apr 17 23:32:35 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/854121612928589825/FueRqDW2_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/854121612928589825/FueRqDW2_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/854115402095505408/1492473643", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 3, "reply_count": 1, "retweet_count": 82, "favorite_count": 142, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}}, {"id": 910941296747040773, "id_str": "910941296747040773", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 408, "resize": "fit"}, "medium": {"w": 1200, "h": 720, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1228, "resize": "fit"}}}, {"id": 910941296734429185, "id_str": "910941296734429185", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 1198, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1198, "h": 675, "resize": "fit"}}}, {"id": 910941296759574528, "id_str": "910941296759574528", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 600, "h": 320, "resize": "fit"}, "small": {"w": 600, "h": 320, "resize": "fit"}, "medium": {"w": 600, "h": 320, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "horrorflickss", "name": "HORROR FLICKS \ud83d\udd2a", "id": 854115402095505408, "id_str": "854115402095505408", "indices": [3, 17]}], "symbols": [], "media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}]}, "extended_entities": {"media": [{"id": 910941296726085635, "id_str": "910941296726085635", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHKXkAMfRIq.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"medium": {"w": 942, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1124, "h": 1432, "resize": "fit"}, "small": {"w": 534, "h": 680, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}, {"id": 910941296747040773, "id_str": "910941296747040773", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHPXUAU5nyK.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 408, "resize": "fit"}, "medium": {"w": 1200, "h": 720, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1228, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}, {"id": 910941296734429185, "id_str": "910941296734429185", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHMW4AETccP.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 1198, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1198, "h": 675, "resize": "fit"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}, {"id": 910941296759574528, "id_str": "910941296759574528", "indices": [102, 125], "media_url": "http://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQSHSWkAAIFCx.jpg", "url": "https://t.co/XE4qsSjzBk", "display_url": "pic.twitter.com/XE4qsSjzBk", "expanded_url": "https://twitter.com/horrorflickss/status/910941314560208897/photo/1", "type": "photo", "sizes": {"large": {"w": 600, "h": 320, "resize": "fit"}, "small": {"w": 600, "h": 320, "resize": "fit"}, "medium": {"w": 600, "h": 320, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910941314560208897, "source_status_id_str": "910941314560208897", "source_user_id": 854115402095505408, "source_user_id_str": "854115402095505408"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028603663"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106894852096, "id_str": "910976106894852096", "text": "@kikesma Ese no es titan el es un labrador, y el que se ve es un pastor.", "display_text_range": [9, 72], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910973209998008320, "in_reply_to_status_id_str": "910973209998008320", "in_reply_to_user_id": 85412926, "in_reply_to_user_id_str": "85412926", "in_reply_to_screen_name": "kikesma", "user": {"id": 1013665076, "id_str": "1013665076", "name": "PADR\u00cdNO!!", "screen_name": "jinetedeluz", "location": " Quer\u00e9taro ft. Guadalajara ", "url": null, "description": "Maduro al que solo los a\u00f1os le han domado. Defe\u00f1o de nacimiento, Quer\u00e9tano por adopci\u00f3n y Jalisciense de coraz\u00f3n. Chivas & Steleers .", "translator_type": "none", "protected": false, "verified": false, "followers_count": 419, "friends_count": 344, "listed_count": 1, "favourites_count": 711, "statuses_count": 13617, "created_at": "Sat Dec 15 17:58:58 +0000 2012", "utc_offset": -18000, "time_zone": "Mexico City", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/739111536/8a3f24cddb12db509fe0b7fd15914771.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/739111536/8a3f24cddb12db509fe0b7fd15914771.jpeg", "profile_background_tile": true, "profile_link_color": "009999", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909791829700128769/Td6zIy2K_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909791829700128769/Td6zIy2K_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1013665076/1505801891", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "kikesma", "name": "Enrique", "id": 85412926, "id_str": "85412926", "indices": [0, 8]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603658"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106928406528, "id_str": "910976106928406528", "text": "RT @PadredeIktan: @AztecaNoticias @AztecaDeportes Y yo como imb\u00e9cil viendo ayer el rescate de Frida Sof\u00eda. Carajo @daniellemx_", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 866109465350852609, "id_str": "866109465350852609", "name": "Nohemi", "screen_name": "Nohemi_fc", "location": "Edo.de Mex", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 71, "friends_count": 100, "listed_count": 0, "favourites_count": 2304, "statuses_count": 2140, "created_at": "Sun May 21 01:52:42 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/873923458639515653/X_3PA-Tg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/873923458639515653/X_3PA-Tg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/866109465350852609/1497715671", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:27:49 +0000 2017", "id": 910948698955317248, "id_str": "910948698955317248", "text": "@AztecaNoticias @AztecaDeportes Y yo como imb\u00e9cil viendo ayer el rescate de Frida Sof\u00eda. Carajo @daniellemx_", "display_text_range": [32, 108], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910945761533108224, "in_reply_to_status_id_str": "910945761533108224", "in_reply_to_user_id": 23377748, "in_reply_to_user_id_str": "23377748", "in_reply_to_screen_name": "AztecaNoticias", "user": {"id": 425357667, "id_str": "425357667", "name": "Beto", "screen_name": "PadredeIktan", "location": "La ciudad de los tributos", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 333, "friends_count": 1239, "listed_count": 6, "favourites_count": 198, "statuses_count": 12519, "created_at": "Wed Nov 30 22:17:54 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/859859566678470656/PuLtCYmt_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/859859566678470656/PuLtCYmt_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/425357667/1417483300", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 2, "retweet_count": 6, "favorite_count": 17, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "AztecaNoticias", "name": "Azteca Noticias", "id": 23377748, "id_str": "23377748", "indices": [0, 15]}, {"screen_name": "AztecaDeportes", "name": "Azteca Deportes", "id": 40131441, "id_str": "40131441", "indices": [16, 31]}, {"screen_name": "daniellemx_", "name": "Danielle Dithurbide", "id": 101658779, "id_str": "101658779", "indices": [96, 108]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "PadredeIktan", "name": "Beto", "id": 425357667, "id_str": "425357667", "indices": [3, 16]}, {"screen_name": "AztecaNoticias", "name": "Azteca Noticias", "id": 23377748, "id_str": "23377748", "indices": [18, 33]}, {"screen_name": "AztecaDeportes", "name": "Azteca Deportes", "id": 40131441, "id_str": "40131441", "indices": [34, 49]}, {"screen_name": "daniellemx_", "name": "Danielle Dithurbide", "id": 101658779, "id_str": "101658779", "indices": [114, 126]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603666"}
{"created_at": "Thu Sep 21 21:16:43 +0000 2017", "id": 910976106920071169, "id_str": "910976106920071169", "text": "@VidaModernaOML @IgnatiusFarray1 Aqu\u00ed hay COMMEDIA. https://t.co/5PnrQhur2E", "display_text_range": [0, 51], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 2654164081, "in_reply_to_user_id_str": "2654164081", "in_reply_to_screen_name": "VidaModernaOML", "user": {"id": 255592569, "id_str": "255592569", "name": "Dani Su\u00e1rez", "screen_name": "danielsuvi", "location": "Las Palmas de Gran Canaria", "url": "https://www.youtube.com/user/suvironi92", "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 179, "friends_count": 716, "listed_count": 3, "favourites_count": 9070, "statuses_count": 7463, "created_at": "Mon Feb 21 17:43:40 +0000 2011", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "7DBFFA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/208367722/1295788139328_1n.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/208367722/1295788139328_1n.jpg", "profile_background_tile": true, "profile_link_color": "40A2F7", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "00066E", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877478973181235201/6SuqbLNz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877478973181235201/6SuqbLNz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/255592569/1489073265", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "VidaModernaOML", "name": "La Vida Moderna", "id": 2654164081, "id_str": "2654164081", "indices": [0, 15]}, {"screen_name": "IgnatiusFarray1", "name": "Ignatius Farray", "id": 791198196, "id_str": "791198196", "indices": [16, 32]}], "symbols": [], "media": [{"id": 910976091103416321, "id_str": "910976091103416321", "indices": [52, 75], "media_url": "http://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "url": "https://t.co/5PnrQhur2E", "display_url": "pic.twitter.com/5PnrQhur2E", "expanded_url": "https://twitter.com/danielsuvi/status/910976106920071169/photo/1", "type": "photo", "sizes": {"large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 383, "h": 680, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976091103416321, "id_str": "910976091103416321", "indices": [52, 75], "media_url": "http://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRv7aUX0AEfFUr.jpg", "url": "https://t.co/5PnrQhur2E", "display_url": "pic.twitter.com/5PnrQhur2E", "expanded_url": "https://twitter.com/danielsuvi/status/910976106920071169/photo/1", "type": "photo", "sizes": {"large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 383, "h": 680, "resize": "fit"}, "medium": {"w": 675, "h": 1200, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028603664"}
{"delete": {"status": {"id": 239683460141314048, "id_str": "239683460141314048", "user_id": 643723, "user_id_str": "643723"}, "timestamp_ms": "1506028604074"}}
{"delete": {"status": {"id": 569665755572277248, "id_str": "569665755572277248", "user_id": 568124302, "user_id_str": "568124302"}, "timestamp_ms": "1506028603616"}}
{"delete": {"status": {"id": 901567922346356737, "id_str": "901567922346356737", "user_id": 792882901, "user_id_str": "792882901"}, "timestamp_ms": "1506028604452"}}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111105810432, "id_str": "910976111105810432", "text": "\u3010\u7206\u7b11\u30c0\u30b8\u30e3\u30ec\u3011 \u71b1\u6d77\uff1a \u71b1\u6d77\u3067\u3042\u3063\u305f\u307f\u305f\u3044", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 898452215454617601, "id_str": "898452215454617601", "name": "\u7c73\u6d25\u7384\u5e2b(*\u00b4\u8278\uff40)\uff77\uff6c", "screen_name": "fesh1twist4", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 34, "friends_count": 76, "listed_count": 0, "favourites_count": 0, "statuses_count": 977, "created_at": "Fri Aug 18 07:51:15 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/898452371352592384/ptBWZLo__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/898452371352592384/ptBWZLo__normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604662"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122587648, "id_str": "910976111122587648", "text": "RT @_ruelia: Amy \ud83c\udf39 https://t.co/u5SzGy3Bxu", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2882529710, "id_str": "2882529710", "name": "Rue", "screen_name": "_ruelia", "location": "Los Angeles, CA", "url": "https://m.soundcloud.com/ruelia", "description": "ARTIST:\nhttp://soundcloud.com/ruelia\nInstagram: @ruelia", "translator_type": "none", "protected": false, "verified": false, "followers_count": 542, "friends_count": 139, "listed_count": 4, "favourites_count": 9465, "statuses_count": 665, "created_at": "Wed Oct 29 20:23:09 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2882529710/1505413529", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Tue Sep 19 04:52:20 +0000 2017", "id": 910003604269940736, "id_str": "910003604269940736", "text": "Amy \ud83c\udf39 https://t.co/u5SzGy3Bxu", "display_text_range": [0, 5], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2882529710, "id_str": "2882529710", "name": "Rue", "screen_name": "_ruelia", "location": "Los Angeles, CA", "url": "https://m.soundcloud.com/ruelia", "description": "ARTIST:\nhttp://soundcloud.com/ruelia\nInstagram: @ruelia", "translator_type": "none", "protected": false, "verified": false, "followers_count": 542, "friends_count": 139, "listed_count": 4, "favourites_count": 9465, "statuses_count": 664, "created_at": "Wed Oct 29 20:23:09 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897287858016272385/2tno3fhe_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2882529710/1505413529", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 3, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [6, 29], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [6, 29], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "video_info": {"aspect_ratio": [9, 16], "duration_millis": 15177, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/720x1280/xpjJPIGkfkMKgNG6.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/360x640/vnpc6FSwu2sLVzbU.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/pl/ZP82IyUHFKmmSVVm.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/180x320/vW7ZXO07aLK6AY2s.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "_ruelia", "name": "Rue", "id": 2882529710, "id_str": "2882529710", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [19, 42], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "photo", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910003604269940736, "source_status_id_str": "910003604269940736", "source_user_id": 2882529710, "source_user_id_str": "2882529710"}]}, "extended_entities": {"media": [{"id": 910003404784656385, "id_str": "910003404784656385", "indices": [19, 42], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910003404784656385/pu/img/XJJeookIWiWGORBi.jpg", "url": "https://t.co/u5SzGy3Bxu", "display_url": "pic.twitter.com/u5SzGy3Bxu", "expanded_url": "https://twitter.com/_ruelia/status/910003604269940736/video/1", "type": "video", "sizes": {"small": {"w": 340, "h": 604, "resize": "fit"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 1067, "resize": "fit"}}, "source_status_id": 910003604269940736, "source_status_id_str": "910003604269940736", "source_user_id": 2882529710, "source_user_id_str": "2882529710", "video_info": {"aspect_ratio": [9, 16], "duration_millis": 15177, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/720x1280/xpjJPIGkfkMKgNG6.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/360x640/vnpc6FSwu2sLVzbU.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/pl/ZP82IyUHFKmmSVVm.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910003404784656385/pu/vid/180x320/vW7ZXO07aLK6AY2s.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101612032, "id_str": "910976111101612032", "text": "\u3067\u304d\u3061\u3083\u3063\u305f\u3053\u306e\u6c17\u306b\u306a\u308b\u30b7\u30df\u3000\u8eab\u8fd1\u306a\u3082\u306e\u3067\u6d88\u3059\u65b9\u6cd5\u3010\u30d1\u30a6\u30c0\u30fc\u30d5\u30a1\u30f3\u30c7\u30fc\u30b7\u30e7\u30f3\u3011\u30d1\u30a6\u30c0\u30fc\u30d5\u30a1\u30f3\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u306fUV\u30ab\u30c3\u30c8\u6a5f\u80fd\u306e\u6709\u7121\u660e\u793a\u306b\u95a2\u308f\u3089\u305a\u3001\u7d2b\u5916\u7dda\u9632\u6b62\u52b9\u679c\u304c\u3042\u308a\u307e\u3059\u3002\u30d1\u30a6\u30c0\u30fc\u30d5\u30a1\u30f3\u30c7\u30fc\u30b7\u30e7\u30f3\u3092\u5857\u3063\u3066\u3044\u308b\u3053\u3068\u3067\u7d2b\u5916\u7dda\u3092\u8df3\u306d\u8fd4\u3057\u3066\u304f\u308c\u307e\u3059\u3002", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2646532916, "id_str": "2646532916", "name": "\u30ad\u30ec\u30a4\u306a\u5973\u6027\u304c\u3084\u3063\u3066\u308b\u3053\u3068\u2606", "screen_name": "kireinajoshi", "location": null, "url": null, "description": "\u30ad\u30ec\u30a4\u306a\u5973\u6027\u306f\u3069\u3093\u306a\u30b3\u30b9\u30e1\u3092\u4f7f\u3063\u3066\u3044\u308b\u306e\uff01\uff1f\u6c17\u306b\u306a\u308b\u3042\u306e\u4eba\u304c\u4f7f\u3063\u3066\u3044\u308b\u3001\u4eca\u8a71\u984c\u306e\u5316\u7ca7\u54c1\u3084\u808c\u306e\u304a\u624b\u5165\u308c\u65b9\u6cd5\u3001\u30b5\u30d7\u30ea\u30e1\u30f3\u30c8\u306a\u3069\u3092\u3054\u7d39\u4ecb\u3057\u307e\u3059\u2606", "translator_type": "none", "protected": false, "verified": false, "followers_count": 207, "friends_count": 33, "listed_count": 5, "favourites_count": 0, "statuses_count": 72447, "created_at": "Mon Jul 14 23:42:19 +0000 2014", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/488831258768592896/jjGArfsJ_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488831258768592896/jjGArfsJ_normal.jpeg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111084834816, "id_str": "910976111084834816", "text": "@SantosDudu51 https://t.co/McnkB59O6I", "display_text_range": [0, 13], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 866670266600095749, "in_reply_to_user_id_str": "866670266600095749", "in_reply_to_screen_name": "SantosDudu51", "user": {"id": 772202697860718592, "id_str": "772202697860718592", "name": "Bianca \u2728", "screen_name": "BiancaSeixasz", "location": "Angra dos Reis, Brasil", "url": null, "description": "@SantosDudu51 \ud83d\udc8d/ bianca_seixas \ud83d\udc7b", "translator_type": "none", "protected": false, "verified": false, "followers_count": 826, "friends_count": 399, "listed_count": 2, "favourites_count": 5928, "statuses_count": 15229, "created_at": "Sat Sep 03 22:40:44 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906880250457591809/TGCXNq_q_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906880250457591809/TGCXNq_q_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/772202697860718592/1505958749", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "9c8b282f46f0ca60", "url": "https://api.twitter.com/1.1/geo/id/9c8b282f46f0ca60.json", "place_type": "city", "name": "Angra dos Reis", "full_name": "Angra dos Reis, Brasil", "country_code": "BR", "country": "Brasil", "bounding_box": {"type": "Polygon", "coordinates": [[[-44.640141, -23.226788], [-44.640141, -22.838077], [-44.091446, -22.838077], [-44.091446, -23.226788]]]}, "attributes": {}}, "contributors": null, "quoted_status_id": 910919824536145921, "quoted_status_id_str": "910919824536145921", "quoted_status": {"created_at": "Thu Sep 21 17:33:04 +0000 2017", "id": 910919824536145921, "id_str": "910919824536145921", "text": "- amor n\u00e3o morde\n- mas \u00e9 s\u00f3 carinho \n- carinho do c\u00e3o n\u00e9", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 708783871123324928, "id_str": "708783871123324928", "name": "CASAL FALANDO", "screen_name": "CasalFalando", "location": null, "url": "https://m.facebook.com/CasalFaland0/", "description": "\u2709 Casalfalando@outlook.com // sugest\u00f5es na dm", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 172708, "friends_count": 39526, "listed_count": 348, "favourites_count": 6, "statuses_count": 5427, "created_at": "Sat Mar 12 22:36:58 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/849008858223824896/XhqyQh67_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/849008858223824896/XhqyQh67_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/708783871123324928/1493844927", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 74, "reply_count": 27, "retweet_count": 499, "favorite_count": 421, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/McnkB59O6I", "expanded_url": "https://twitter.com/casalfalando/status/910919824536145921", "display_url": "twitter.com/casalfalando/s\u2026", "indices": [14, 37]}], "user_mentions": [{"screen_name": "SantosDudu51", "name": "Dudu Santos", "id": 866670266600095749, "id_str": "866670266600095749", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604657"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097475072, "id_str": "910976111097475072", "text": "I just entered to win a vegan @ChocPizzaCo Decadent Dark Chocolate Pizza from @thehecticvegan you can too: https://t.co/HeBcuwnSb2", "source": "<a href=\"https://gleam.io\" rel=\"nofollow\">Gleam Competition App</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 88043681, "id_str": "88043681", "name": "Harrington Towers", "screen_name": "freyerj", "location": "UK \uf8ff\uf8ff", "url": null, "description": "love Border Collies, cats, football and The Beatles", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2408, "friends_count": 4793, "listed_count": 432, "favourites_count": 2237, "statuses_count": 306770, "created_at": "Fri Nov 06 22:03:01 +0000 2009", "utc_offset": 3600, "time_zone": "London", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "B2DFDA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/69640575/photo.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/69640575/photo.jpg", "profile_background_tile": true, "profile_link_color": "93A644", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/999912165/photo_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/999912165/photo_normal.jpg", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/HeBcuwnSb2", "expanded_url": "https://wn.nr/y2gKWb", "display_url": "wn.nr/y2gKWb", "indices": [107, 130]}], "user_mentions": [{"screen_name": "ChocPizzaCo", "name": "Gourmet Choc Pizza", "id": 136216272, "id_str": "136216272", "indices": [30, 42]}, {"screen_name": "TheHecticVegan", "name": "The Hectic Vegan", "id": 1098202417, "id_str": "1098202417", "indices": [78, 93]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118397441, "id_str": "910976111118397441", "text": "Xhet nangangatog na ko sa kaba, Lord ikaw na bahala \ud83d\ude2d", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 543383566, "id_str": "543383566", "name": "Janelle", "screen_name": "ChanJanelle", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 448, "friends_count": 262, "listed_count": 0, "favourites_count": 16876, "statuses_count": 48668, "created_at": "Mon Apr 02 12:45:19 +0000 2012", "utc_offset": 28800, "time_zone": "Beijing", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "CF0C64", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": false, "profile_link_color": "CC3366", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "95E8EC", "profile_text_color": "3C3940", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910847629650673664/Zlt8LNy1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910847629650673664/Zlt8LNy1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/543383566/1479724211", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "tl", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111110008832, "id_str": "910976111110008832", "text": "RT @splinter_news: Oklahoma City cops fatally shot a deaf man as neighbors screamed, \"He can't hear you!\" https://t.co/gvai7C7B5d https://t\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 871164700603564032, "id_str": "871164700603564032", "name": "Saba", "screen_name": "sabumafooo", "location": "Elk Grove, CA", "url": null, "description": "I'm just chilling", "translator_type": "none", "protected": false, "verified": false, "followers_count": 54, "friends_count": 71, "listed_count": 0, "favourites_count": 357, "statuses_count": 419, "created_at": "Sun Jun 04 00:40:24 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "7FDBB6", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883982104324849664/1p4hLyXF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883982104324849664/1p4hLyXF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/871164700603564032/1496538584", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 00:41:22 +0000 2017", "id": 910665218484834304, "id_str": "910665218484834304", "text": "Oklahoma City cops fatally shot a deaf man as neighbors screamed, \"He can't hear you!\" https://t.co/gvai7C7B5d https://t.co/nr8ikACj5u", "display_text_range": [0, 110], "source": "<a href=\"http://www.socialflow.com\" rel=\"nofollow\">SocialFlow</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 121817564, "id_str": "121817564", "name": "Splinter", "screen_name": "splinter_news", "location": null, "url": "http://splinternews.com", "description": "News and opinions that get under your skin.", "translator_type": "regular", "protected": false, "verified": true, "followers_count": 549473, "friends_count": 2150, "listed_count": 4301, "favourites_count": 7930, "statuses_count": 125214, "created_at": "Wed Mar 10 17:48:51 +0000 2010", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/507601660168773632/nS-zoRQn.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/507601660168773632/nS-zoRQn.jpeg", "profile_background_tile": true, "profile_link_color": "F85637", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/889485379476135938/od8CFhnw_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/889485379476135938/od8CFhnw_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/121817564/1500904800", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 1104, "reply_count": 104, "retweet_count": 2607, "favorite_count": 2001, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/gvai7C7B5d", "expanded_url": "https://trib.al/XvQy986", "display_url": "trib.al/XvQy986", "indices": [87, 110]}], "user_mentions": [], "symbols": [], "media": [{"id": 910665215993290752, "id_str": "910665215993290752", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "url": "https://t.co/nr8ikACj5u", "display_url": "pic.twitter.com/nr8ikACj5u", "expanded_url": "https://twitter.com/splinter_news/status/910665218484834304/photo/1", "type": "photo", "sizes": {"large": {"w": 1080, "h": 1440, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910665215993290752, "id_str": "910665215993290752", "indices": [111, 134], "media_url": "http://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "media_url_https": "https://pbs.twimg.com/media/DKNVMGSVoAAeStU.jpg", "url": "https://t.co/nr8ikACj5u", "display_url": "pic.twitter.com/nr8ikACj5u", "expanded_url": "https://twitter.com/splinter_news/status/910665218484834304/photo/1", "type": "photo", "sizes": {"large": {"w": 1080, "h": 1440, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/gvai7C7B5d", "expanded_url": "https://trib.al/XvQy986", "display_url": "trib.al/XvQy986", "indices": [106, 129]}], "user_mentions": [{"screen_name": "splinter_news", "name": "Splinter", "id": 121817564, "id_str": "121817564", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604663"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122644992, "id_str": "910976111122644992", "text": "RT @Rebelutionary_Z: Hey St. Louis peeps! You know this guy? Let's put him on blast. I wonder what his daughter would think..\n#STL\u2026 ", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 721461360, "id_str": "721461360", "name": "Andy \ud83d\udcf7\u2620\ufe0f", "screen_name": "akristofferson", "location": "Albuquerque, NM 505", "url": "https://www.burquemedia.com", "description": "https://www.instagram.com/505andy_/?hl=en", "translator_type": "none", "protected": false, "verified": false, "followers_count": 738, "friends_count": 1317, "listed_count": 77, "favourites_count": 7265, "statuses_count": 25434, "created_at": "Sat Jul 28 04:12:51 +0000 2012", "utc_offset": -21600, "time_zone": "Mountain Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/683336441120702465/vk0h5hTb.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/683336441120702465/vk0h5hTb.jpg", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900694078534201346/n6jBn-xF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900694078534201346/n6jBn-xF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/721461360/1502683654", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:05:26 +0000 2017", "id": 910927969929109505, "id_str": "910927969929109505", "text": "Hey St. Louis peeps! You know this guy? Let's put him on blast. I wonder what his daughter would think..\n#STL\u2026 https://t.co/3lAh2wtcFY", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 399224799, "id_str": "399224799", "name": "Rebelutionary Z", "screen_name": "Rebelutionary_Z", "location": "St Louis, MO", "url": "http://RebZ.tv", "description": "Livestreamer/Journalist - Founder http://RebZ.tv Help me stream and keep building my new media platform: http://RebZ.tv/donate", "translator_type": "none", "protected": false, "verified": false, "followers_count": 22069, "friends_count": 770, "listed_count": 624, "favourites_count": 20344, "statuses_count": 34410, "created_at": "Thu Oct 27 05:32:24 +0000 2011", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534820789/wllstbull.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534820789/wllstbull.jpg", "profile_background_tile": true, "profile_link_color": "4A913C", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/723566700873039873/I3WNlNdI_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723566700873039873/I3WNlNdI_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/399224799/1370370649", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "Hey St. Louis peeps! You know this guy? Let's put him on blast. I wonder what his daughter would think..\n#STL\n#STLverdict #STLcopsAttack https://t.co/sUfNCVUEdF", "display_text_range": [0, 136], "entities": {"hashtags": [{"text": "STL", "indices": [105, 109]}, {"text": "STLverdict", "indices": [110, 121]}, {"text": "STLcopsAttack", "indices": [122, 136]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910927964879044608, "id_str": "910927964879044608", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 229, "h": 251, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 229, "h": 251, "resize": "fit"}, "large": {"w": 229, "h": 251, "resize": "fit"}}}, {"id": 910927965864706048, "id_str": "910927965864706048", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"medium": {"w": 891, "h": 1054, "resize": "fit"}, "large": {"w": 891, "h": 1054, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 575, "h": 680, "resize": "fit"}}}, {"id": 910927965768187905, "id_str": "910927965768187905", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 478, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 776, "h": 546, "resize": "fit"}, "medium": {"w": 776, "h": 546, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910927964879044608, "id_str": "910927964879044608", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKGKVwAAnsc_.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 229, "h": 251, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 229, "h": 251, "resize": "fit"}, "large": {"w": 229, "h": 251, "resize": "fit"}}}, {"id": 910927965864706048, "id_str": "910927965864706048", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJ1VwAADqVg.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"medium": {"w": 891, "h": 1054, "resize": "fit"}, "large": {"w": 891, "h": 1054, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 575, "h": 680, "resize": "fit"}}}, {"id": 910927965768187905, "id_str": "910927965768187905", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKREKJeVAAEVkB7.jpg", "url": "https://t.co/sUfNCVUEdF", "display_url": "pic.twitter.com/sUfNCVUEdF", "expanded_url": "https://twitter.com/Rebelutionary_Z/status/910927969929109505/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 478, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 776, "h": 546, "resize": "fit"}, "medium": {"w": 776, "h": 546, "resize": "fit"}}}]}}, "quote_count": 5, "reply_count": 5, "retweet_count": 34, "favorite_count": 24, "entities": {"hashtags": [{"text": "STL", "indices": [105, 109]}], "urls": [{"url": "https://t.co/3lAh2wtcFY", "expanded_url": "https://twitter.com/i/web/status/910927969929109505", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [111, 134]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "STL", "indices": [126, 130]}], "urls": [], "user_mentions": [{"screen_name": "Rebelutionary_Z", "name": "Rebelutionary Z", "id": 399224799, "id_str": "399224799", "indices": [3, 19]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111084961792, "id_str": "910976111084961792", "text": "RT @baghdad_salam: \u062e\u0631\u064a\u062c\u0627\u062a \u0643\u0644\u064a\u0629 \u0627\u0644\u0635\u064a\u062f\u0644\u0629 \n\u062c\u0627\u0645\u0639\u0629 \u0628\u063a\u062f\u0627\u062f\n\u0633\u0646\u0629 \u0661\u0669\u0665\u0667 \u0645\n#\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a \n#\u0627\u0644\u0635\u062f\u0645\u0647 \n#IRAQesque https://t.co/Gh4rjfAGrV", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 701107742568804352, "id_str": "701107742568804352", "name": "\ud83c\udd70Azhar\ud83c\udd70", "screen_name": "dr_azharr", "location": null, "url": null, "description": "\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0641\u064a \u0627\u0639\u062c\u0627\u0628\u0627\u062a\u064a  working as physician internal medicine", "translator_type": "none", "protected": false, "verified": false, "followers_count": 286, "friends_count": 140, "listed_count": 0, "favourites_count": 288, "statuses_count": 6965, "created_at": "Sat Feb 20 18:14:46 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/792901974047887361/pdGcO7vA_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/792901974047887361/pdGcO7vA_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/701107742568804352/1475245561", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Tue Jun 14 19:17:14 +0000 2016", "id": 742798066344955905, "id_str": "742798066344955905", "text": "\u062e\u0631\u064a\u062c\u0627\u062a \u0643\u0644\u064a\u0629 \u0627\u0644\u0635\u064a\u062f\u0644\u0629 \n\u062c\u0627\u0645\u0639\u0629 \u0628\u063a\u062f\u0627\u062f\n\u0633\u0646\u0629 \u0661\u0669\u0665\u0667 \u0645\n#\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a \n#\u0627\u0644\u0635\u062f\u0645\u0647 \n#IRAQesque https://t.co/Gh4rjfAGrV", "display_text_range": [0, 79], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 696792726365462530, "id_str": "696792726365462530", "name": "Baghdad Dar Al Salam", "screen_name": "baghdad_salam", "location": "iraq", "url": "https://www.facebook.com/permalink.php?story_fbid=479961912395141&id=100011440088153", "description": "\u0633\u0644\u0627\u0645 \u0639\u0644\u0649 \u062f\u0627\u0631 \u0627\u0644\u0633\u0644\u0627\u0645 \u062c\u0632\u064a\u0644 \u0648\u0639\u062a\u0628\u0649 \u0639\u0644\u0649 \u0627\u0646 \u0627\u0644\u0639\u062a\u0627\u0628 \u0637\u0648\u064a\u0644 \u062d\u0633\u0627\u0628 \u0645\u062a\u062e\u0635\u0635 \u0644\u0628\u063a\u062f\u0627\u062f \u0627\u0644\u062d\u0628\u064a\u0628\u0629 \u0648\u0627\u0644\u0639\u0631\u0627\u0642\u060c \u0627\u0633\u062a\u062e\u062f\u0645 #baghdad_salam \u0644\u062a\u062c\u062f \u0645\u0627\u0647\u0648 \u062c\u0645\u064a\u0644", "translator_type": "none", "protected": false, "verified": false, "followers_count": 74824, "friends_count": 1, "listed_count": 72, "favourites_count": 12517, "statuses_count": 7776, "created_at": "Mon Feb 08 20:28:26 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/890786305461936129/qr6k7bK5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/890786305461936129/qr6k7bK5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/696792726365462530/1465154667", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 5, "retweet_count": 63, "favorite_count": 102, "entities": {"hashtags": [{"text": "\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a", "indices": [44, 58]}, {"text": "\u0627\u0644\u0635\u062f\u0645\u0647", "indices": [60, 67]}, {"text": "IRAQesque", "indices": [69, 79]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [80, 103], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [80, 103], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\u0646\u062e\u0644\u0647_\u0645\u0646_\u0628\u0644\u0627\u062f\u064a", "indices": [63, 77]}, {"text": "\u0627\u0644\u0635\u062f\u0645\u0647", "indices": [79, 86]}, {"text": "IRAQesque", "indices": [88, 98]}], "urls": [], "user_mentions": [{"screen_name": "baghdad_salam", "name": "Baghdad Dar Al Salam", "id": 696792726365462530, "id_str": "696792726365462530", "indices": [3, 17]}], "symbols": [], "media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}, "source_status_id": 742798066344955905, "source_status_id_str": "742798066344955905", "source_user_id": 696792726365462530, "source_user_id_str": "696792726365462530"}]}, "extended_entities": {"media": [{"id": 742798056815464449, "id_str": "742798056815464449", "indices": [99, 122], "media_url": "http://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "media_url_https": "https://pbs.twimg.com/media/Ck7y5axWEAEFJKi.jpg", "url": "https://t.co/Gh4rjfAGrV", "display_url": "pic.twitter.com/Gh4rjfAGrV", "expanded_url": "https://twitter.com/baghdad_salam/status/742798066344955905/photo/1", "type": "photo", "sizes": {"medium": {"w": 442, "h": 281, "resize": "fit"}, "small": {"w": 442, "h": 281, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 442, "h": 281, "resize": "fit"}}, "source_status_id": 742798066344955905, "source_status_id_str": "742798066344955905", "source_user_id": 696792726365462530, "source_user_id_str": "696792726365462530"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604657"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118618625, "id_str": "910976111118618625", "text": "\u0635\u0648\u062a \u0646\u0648\u0627\u0644 \u0627\u0644\u0643\u0648\u064a\u062a\u064a\u0647 \u062f\u0627\u064a\u0645\u0627\u064b \u0648\u0623\u0628\u062f\u0627\u064b \u064a\u0631\u0648\u0642\u0646\u064a\ud83e\udd26\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udda4\ud83d\udda4\ud83d\udda4\ud83d\udda4.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3365133321, "id_str": "3365133321", "name": "\u0631\u0650\u0647\u0627\u0645.", "screen_name": "qvii7", "location": "Just San.", "url": null, "description": "\u0623\u062d\u0628 \u0625\u0646\u064a \u0643\u0644 \u0634\u064a\u0621 \u0628\u0627\u0644\u0646\u0633\u0628\u0647 \u0644\u0640 \u0633\u0627\u0646.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2508, "friends_count": 973, "listed_count": 2, "favourites_count": 28267, "statuses_count": 43770, "created_at": "Wed Jul 08 01:53:20 +0000 2015", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910792838627172352/T11nv2Kz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910792838627172352/T11nv2Kz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3365133321/1504929658", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111105916928, "id_str": "910976111105916928", "text": "RT @frankthorp: Dem source: \"This is exactly the debate Graham &amp; Cassidy want to have. Sanders is looking out for himself rather th\u2026 ", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 884664676985872388, "id_str": "884664676985872388", "name": "LoriUKBay", "screen_name": "LoriUKBay", "location": "CA, NC, WA...", "url": null, "description": "Not using full name or importing contacts to avoid issues w/ employers - hoping my command of English is enough to show I'm not a bot.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5, "friends_count": 213, "listed_count": 0, "favourites_count": 325, "statuses_count": 546, "created_at": "Tue Jul 11 06:44:30 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886083503770619904/o_RhzPP7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886083503770619904/o_RhzPP7_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:05:56 +0000 2017", "id": 910973392593055745, "id_str": "910973392593055745", "text": "Dem source: \"This is exactly the debate Graham &amp; Cassidy want to have. Sanders is looking out for himself rather th\u2026 https://t.co/HcfSE2mm6l", "display_text_range": [0, 140], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 14007532, "id_str": "14007532", "name": "Frank Thorp V", "screen_name": "frankthorp", "location": "Washington, DC", "url": "http://www.nbcnews.com", "description": "Producer & Off-Air Reporter covering Congress at @NBCNews. Instagram: (frankthorpv) Snapchat: (frankthorp) Also served as Chairman of the RTCA Exec. Committee.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 40994, "friends_count": 1553, "listed_count": 1443, "favourites_count": 4671, "statuses_count": 24467, "created_at": "Tue Feb 26 15:31:46 +0000 2008", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/360628972/House_floor_small.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/360628972/House_floor_small.jpg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/674052150570459139/8qJWxmRm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/674052150570459139/8qJWxmRm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14007532/1495901007", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910968062123368452, "quoted_status_id_str": "910968062123368452", "quoted_status": {"created_at": "Thu Sep 21 20:44:45 +0000 2017", "id": 910968062123368452, "id_str": "910968062123368452", "text": "Breaking: @LindseyGrahamSC @BillCassidy will debate @SenSanders @amyklobuchar on healthcare Monday at 9pET during @CNN Special Town Hall 1/2", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 18097821, "id_str": "18097821", "name": "Mark Preston", "screen_name": "PrestonCNN", "location": "\u00dcT: 38.900063,-77.008976", "url": "https://www.facebook.com/markprestoncnn", "description": "CNN's Exec. Dir. of Pol. Programming/Sr. Pol. Analyst; Full Stop w/ Mark Preston SiriusXM/POTUS 124; Bio http://bit.ly/2vibp68; \u262e\ufe0f & \u2764\ufe0f http://bit.ly/2wlyhhK", "translator_type": "none", "protected": false, "verified": true, "followers_count": 47001, "friends_count": 1559, "listed_count": 1345, "favourites_count": 575, "statuses_count": 8957, "created_at": "Sat Dec 13 12:52:32 +0000 2008", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/18097821/1460072106", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 637, "reply_count": 224, "retweet_count": 559, "favorite_count": 703, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LindseyGrahamSC", "name": "Lindsey Graham", "id": 432895323, "id_str": "432895323", "indices": [10, 26]}, {"screen_name": "BillCassidy", "name": "Bill Cassidy", "id": 55677432, "id_str": "55677432", "indices": [27, 39]}, {"screen_name": "SenSanders", "name": "Bernie Sanders", "id": 29442313, "id_str": "29442313", "indices": [52, 63]}, {"screen_name": "amyklobuchar", "name": "Amy Klobuchar", "id": 33537967, "id_str": "33537967", "indices": [64, 77]}, {"screen_name": "CNN", "name": "CNN", "id": 759251, "id_str": "759251", "indices": [114, 118]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "extended_tweet": {"full_text": "Dem source: \"This is exactly the debate Graham &amp; Cassidy want to have. Sanders is looking out for himself rather than being a team player\" https://t.co/o8wQ7sZqFN", "display_text_range": [0, 142], "entities": {"hashtags": [], "urls": [{"url": "https://t.co/o8wQ7sZqFN", "expanded_url": "https://twitter.com/PrestonCNN/status/910968062123368452", "display_url": "twitter.com/PrestonCNN/sta\u2026", "indices": [143, 166]}], "user_mentions": [], "symbols": []}}, "quote_count": 31, "reply_count": 30, "retweet_count": 113, "favorite_count": 147, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/HcfSE2mm6l", "expanded_url": "https://twitter.com/i/web/status/910973392593055745", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [121, 144]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "quoted_status_id": 910968062123368452, "quoted_status_id_str": "910968062123368452", "quoted_status": {"created_at": "Thu Sep 21 20:44:45 +0000 2017", "id": 910968062123368452, "id_str": "910968062123368452", "text": "Breaking: @LindseyGrahamSC @BillCassidy will debate @SenSanders @amyklobuchar on healthcare Monday at 9pET during @CNN Special Town Hall 1/2", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 18097821, "id_str": "18097821", "name": "Mark Preston", "screen_name": "PrestonCNN", "location": "\u00dcT: 38.900063,-77.008976", "url": "https://www.facebook.com/markprestoncnn", "description": "CNN's Exec. Dir. of Pol. Programming/Sr. Pol. Analyst; Full Stop w/ Mark Preston SiriusXM/POTUS 124; Bio http://bit.ly/2vibp68; \u262e\ufe0f & \u2764\ufe0f http://bit.ly/2wlyhhK", "translator_type": "none", "protected": false, "verified": true, "followers_count": 47001, "friends_count": 1559, "listed_count": 1345, "favourites_count": 575, "statuses_count": 8957, "created_at": "Sat Dec 13 12:52:32 +0000 2008", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/27739622/CNN_Twitter_Background_05.2009.gif", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718220585441079296/wfxNfeOa_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/18097821/1460072106", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 637, "reply_count": 224, "retweet_count": 559, "favorite_count": 703, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LindseyGrahamSC", "name": "Lindsey Graham", "id": 432895323, "id_str": "432895323", "indices": [10, 26]}, {"screen_name": "BillCassidy", "name": "Bill Cassidy", "id": 55677432, "id_str": "55677432", "indices": [27, 39]}, {"screen_name": "SenSanders", "name": "Bernie Sanders", "id": 29442313, "id_str": "29442313", "indices": [52, 63]}, {"screen_name": "amyklobuchar", "name": "Amy Klobuchar", "id": 33537967, "id_str": "33537967", "indices": [64, 77]}, {"screen_name": "CNN", "name": "CNN", "id": 759251, "id_str": "759251", "indices": [114, 118]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "frankthorp", "name": "Frank Thorp V", "id": 14007532, "id_str": "14007532", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604662"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118499840, "id_str": "910976111118499840", "text": "\u30ac\u30f4\u30a7\u306f\u307e\u3060\u6016\u304f\u3066\u3042\u3093\u307e\u308a\u89e6\u3063\u3066\u306a\u3044\u3002", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1493342197, "id_str": "1493342197", "name": "\u3042\u304a\u3068", "screen_name": "rosja_ja", "location": "\u5305\u5bb9\u529b\u306e\u5909\u308f\u3089\u306a\u3044\u305f\u3060\u4e00\u3064\u306e\u304a\u5e03\u56e3", "url": "http://nanos.jp/ikrmnine/page/35/", "description": "\u8150\u3063\u3066\u308b\u6210\u4eba\u6e08\u3002\u57fa\u672c\u591c\u578b\u3002\u53e3\u3068\u6027\u683c\u304c\u60aa\u3044\u3002\u7bc0\u64cd\u306a\u3057\u3060\u304c\u504f\u98df\u5bb6\u3002\u305f\u307e\u306b\u98ef\u30c6\u30ed\uff0b\u30cd\u30a4\u30eb\u30c6\u30ed\u3002\u3042\u3068\u306f\u30d7\u30ed\u30d5\u306b\u3066\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 100, "friends_count": 98, "listed_count": 9, "favourites_count": 7955, "statuses_count": 146196, "created_at": "Sat Jun 08 16:21:40 +0000 2013", "utc_offset": 32400, "time_zone": "Tokyo", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "709397", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_tile": false, "profile_link_color": "7ACCA8", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "A0C5C7", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908742280294436864/bZGRoV23_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908742280294436864/bZGRoV23_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1493342197/1499610495", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114207232, "id_str": "910976111114207232", "text": "RT @CitouSabia_: S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 731357634465542145, "id_str": "731357634465542145", "name": "\ud83c\udf34", "screen_name": "Reamavam", "location": null, "url": null, "description": "\u2661 @RelatandoStatus \u2661", "translator_type": "none", "protected": false, "verified": false, "followers_count": 33584, "friends_count": 9390, "listed_count": 32, "favourites_count": 246, "statuses_count": 1220, "created_at": "Sat May 14 05:37:02 +0000 2016", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/816435365133295620/_TC6ys_W_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/816435365133295620/_TC6ys_W_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/731357634465542145/1483488434", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:13:51 +0000 2017", "id": 910975383260016641, "id_str": "910975383260016641", "text": "S\u00f3 passei pra avisa que hoje tem Novela \u2764\ufe0f\u2764\ufe0f\ud83d\ude0d https://t.co/u4JACxBy3o", "display_text_range": [0, 45], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 900428139523919872, "id_str": "900428139523919872", "name": "Sabi\u00e1", "screen_name": "CitouSabia_", "location": null, "url": "https://www.instagram.com/p/BZT0mzLg8Lk/", "description": "V1D4 L0k4\nSou o Dono do Morro porraaaaaa |Aceitamos sugest\u00f5es de Tweets | Ativem as notifica\u00e7\u00f5es // Criado- 08/09/2017 \u2764\ufe0f\ud83d\ude4f Twitter dedicado ao personagem Sabi\u00e1", "translator_type": "none", "protected": false, "verified": false, "followers_count": 20112, "friends_count": 27, "listed_count": 24, "favourites_count": 67, "statuses_count": 412, "created_at": "Wed Aug 23 18:42:52 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909905435867717632/LPY-vna7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/900428139523919872/1505840576", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 62, "favorite_count": 23, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [46, 69], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "CitouSabia_", "name": "Sabi\u00e1", "id": 900428139523919872, "id_str": "900428139523919872", "indices": [3, 15]}], "symbols": [], "media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "extended_entities": {"media": [{"id": 910975352654254080, "id_str": "910975352654254080", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRvQbYX0AACPgC.jpg", "url": "https://t.co/u4JACxBy3o", "display_url": "pic.twitter.com/u4JACxBy3o", "expanded_url": "https://twitter.com/CitouSabia_/status/910975383260016641/photo/1", "type": "photo", "sizes": {"medium": {"w": 1080, "h": 838, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 528, "resize": "fit"}, "large": {"w": 1080, "h": 838, "resize": "fit"}}, "source_status_id": 910975383260016641, "source_status_id_str": "910975383260016641", "source_user_id": 900428139523919872, "source_user_id_str": "900428139523919872"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114366979, "id_str": "910976111114366979", "text": "RT @AmandinhanGomes: Pitbull \u00e9 foda https://t.co/baYKKejIi5", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1645720357, "id_str": "1645720357", "name": "F R A N k", "screen_name": "VascoMundo", "location": null, "url": "http://facebook.com/roberto.frank.50", "description": "Vasco", "translator_type": "none", "protected": false, "verified": false, "followers_count": 615, "friends_count": 2396, "listed_count": 4, "favourites_count": 1, "statuses_count": 68451, "created_at": "Sun Aug 04 17:16:37 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/797271622340251648/S-JUEDsk_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/797271622340251648/S-JUEDsk_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1645720357/1495351925", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:13:01 +0000 2017", "id": 910975175193239558, "id_str": "910975175193239558", "text": "Pitbull \u00e9 foda https://t.co/baYKKejIi5", "display_text_range": [0, 14], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1642177591, "id_str": "1642177591", "name": "Mandi", "screen_name": "AmandinhanGomes", "location": "+55 028", "url": null, "description": "GIGANTE DESDE 1898 @vascodagama \u2764", "translator_type": "none", "protected": false, "verified": false, "followers_count": 338, "friends_count": 204, "listed_count": 0, "favourites_count": 6118, "statuses_count": 10429, "created_at": "Sat Aug 03 05:49:17 +0000 2013", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451867669549953024/z-3W9zrG.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451867669549953024/z-3W9zrG.jpeg", "profile_background_tile": true, "profile_link_color": "009999", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906561791358054400/TKkscc7g_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906561791358054400/TKkscc7g_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1642177591/1505862634", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "63cf4c863ca99fbb", "url": "https://api.twitter.com/1.1/geo/id/63cf4c863ca99fbb.json", "place_type": "city", "name": "Itapemirim", "full_name": "Itapemirim, Brasil", "country_code": "BR", "country": "Brasil", "bounding_box": {"type": "Polygon", "coordinates": [[[-41.115288, -21.111428], [-41.115288, -20.856537], [-40.753546, -20.856537], [-40.753546, -21.111428]]]}, "attributes": {}}, "contributors": null, "quoted_status_id": 910971059259756544, "quoted_status_id_str": "910971059259756544", "quoted_status": {"created_at": "Thu Sep 21 20:56:40 +0000 2017", "id": 910971059259756544, "id_str": "910971059259756544", "text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (6\u2026 https://t.co/EGiXZks4Ju", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15911679, "id_str": "15911679", "name": "Esporte Interativo", "screen_name": "Esp_Interativo", "location": "Brasil", "url": "http://www.esporteinterativo.com.br", "description": "O melhor canal de esportes na TV, na internet e no celular. Movidos por sonhos!", "translator_type": "none", "protected": false, "verified": true, "followers_count": 2024958, "friends_count": 539, "listed_count": 8191, "favourites_count": 12768, "statuses_count": 187837, "created_at": "Wed Aug 20 00:32:15 +0000 2008", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_tile": false, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15911679/1505246950", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (68), do @Corinthians ! https://t.co/wps85nZ6mg", "display_text_range": [0, 136], "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}, {"screen_name": "Corinthians", "name": "Corinthians", "id": 44627459, "id_str": "44627459", "indices": [122, 134]}], "symbols": [], "media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}}, "quote_count": 11, "reply_count": 4, "retweet_count": 67, "favorite_count": 130, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/EGiXZks4Ju", "expanded_url": "https://twitter.com/i/web/status/910971059259756544", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/baYKKejIi5", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544", "display_url": "twitter.com/Esp_Interativo\u2026", "indices": [15, 38]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "quoted_status_id": 910971059259756544, "quoted_status_id_str": "910971059259756544", "quoted_status": {"created_at": "Thu Sep 21 20:56:40 +0000 2017", "id": 910971059259756544, "id_str": "910971059259756544", "text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (6\u2026 https://t.co/EGiXZks4Ju", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15911679, "id_str": "15911679", "name": "Esporte Interativo", "screen_name": "Esp_Interativo", "location": "Brasil", "url": "http://www.esporteinterativo.com.br", "description": "O melhor canal de esportes na TV, na internet e no celular. Movidos por sonhos!", "translator_type": "none", "protected": false, "verified": true, "followers_count": 2024958, "friends_count": 539, "listed_count": 8191, "favourites_count": 12768, "statuses_count": 187837, "created_at": "Wed Aug 20 00:32:15 +0000 2008", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/644627337565347840/7NDrkXN_.jpg", "profile_background_tile": false, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/881968181224648706/WAobTPGY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15911679/1505246950", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": ".@JeanIrmer \u00e9 o maior ladr\u00e3o de bolas do Brasileiro, seguido por Gilberto (69), tamb\u00e9m do @VascodaGama, e F\u00e1gner (68), do @Corinthians ! https://t.co/wps85nZ6mg", "display_text_range": [0, 136], "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}, {"screen_name": "Corinthians", "name": "Corinthians", "id": 44627459, "id_str": "44627459", "indices": [122, 134]}], "symbols": [], "media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910970816090828804, "id_str": "910970816090828804", "indices": [137, 160], "media_url": "http://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRrIXXXcAQNgs6.jpg", "url": "https://t.co/wps85nZ6mg", "display_url": "pic.twitter.com/wps85nZ6mg", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544/photo/1", "type": "photo", "sizes": {"large": {"w": 1420, "h": 706, "resize": "fit"}, "medium": {"w": 1200, "h": 597, "resize": "fit"}, "small": {"w": 680, "h": 338, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}}, "quote_count": 11, "reply_count": 4, "retweet_count": 67, "favorite_count": 130, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/EGiXZks4Ju", "expanded_url": "https://twitter.com/i/web/status/910971059259756544", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [{"screen_name": "JeanIrmer", "name": "Jean Carlos Irmer", "id": 282293413, "id_str": "282293413", "indices": [1, 11]}, {"screen_name": "VascodaGama", "name": "Vasco da Gama", "id": 28273230, "id_str": "28273230", "indices": [90, 102]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/baYKKejIi5", "expanded_url": "https://twitter.com/Esp_Interativo/status/910971059259756544", "display_url": "twitter.com/Esp_Interativo\u2026", "indices": [36, 59]}], "user_mentions": [{"screen_name": "AmandinhanGomes", "name": "Mandi", "id": 1642177591, "id_str": "1642177591", "indices": [3, 19]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122755584, "id_str": "910976111122755584", "text": "RT @JohnMaxwellTeam: Adversity is an opportunity for self-discovery ~John Maxwell #JMTeam https://t.co/Vj6V3zHSLB", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 479404677, "id_str": "479404677", "name": "naija entrepreneur", "screen_name": "WOGUNDUBUISIS", "location": "Nigeria", "url": null, "description": "#entrepreneur , #startup ,#business , #Sociopreneur ,#youngpeople ,#mentor ,#coach ,#aba ,#ngwa ,#umuogele  ,#nigeria  ,#abia, #bank ,", "translator_type": "none", "protected": false, "verified": false, "followers_count": 286, "friends_count": 1406, "listed_count": 2, "favourites_count": 20, "statuses_count": 344, "created_at": "Tue Jan 31 10:34:03 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906663951177535488/MwO-1yAY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906663951177535488/MwO-1yAY_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:08:20 +0000 2017", "id": 910928699813482496, "id_str": "910928699813482496", "text": "Adversity is an opportunity for self-discovery ~John Maxwell #JMTeam https://t.co/Vj6V3zHSLB", "source": "<a href=\"https://www.socialjukebox.com\" rel=\"nofollow\">The Social Jukebox</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 352526493, "id_str": "352526493", "name": "John Maxwell Team", "screen_name": "JohnMaxwellTeam", "location": "West Palm Beach, FL", "url": "http://bit.ly/1Bn0hAw", "description": "World's largest and fastest growing entrepreneur certification program. By application, learn more, apply and qualify at link below #JMTeam - #LeadersThriveHere", "translator_type": "none", "protected": false, "verified": false, "followers_count": 110058, "friends_count": 81292, "listed_count": 1411, "favourites_count": 28720, "statuses_count": 62876, "created_at": "Wed Aug 10 19:02:20 +0000 2011", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "FF691F", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/600141263845732352/M9n3aKkg_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600141263845732352/M9n3aKkg_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/352526493/1479233981", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 6, "favorite_count": 6, "entities": {"hashtags": [{"text": "JMTeam", "indices": [61, 68]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "extended_entities": {"media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "JMTeam", "indices": [82, 89]}], "urls": [], "user_mentions": [{"screen_name": "JohnMaxwellTeam", "name": "John Maxwell Team", "id": 352526493, "id_str": "352526493", "indices": [3, 19]}], "symbols": [], "media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "extended_entities": {"media": [{"id": 588558551297044483, "id_str": "588558551297044483", "indices": [90, 113], "media_url": "http://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "media_url_https": "https://pbs.twimg.com/media/CCr64lOUMAMLjFt.png", "url": "https://t.co/Vj6V3zHSLB", "display_url": "pic.twitter.com/Vj6V3zHSLB", "expanded_url": "http://twitter.com/JohnMaxwellTeam/status/588558552035237889/photo/1", "type": "photo", "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "source_status_id": 588558552035237889, "source_status_id_str": "588558552035237889", "source_user_id": 352526493, "source_user_id_str": "352526493"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093403649, "id_str": "910976111093403649", "text": "@cabelloartois To rindo de nervoso \ud83d\ude02\ud83d\ude02\ud83d\ude02 do jeito q brasileiro \u00e9  revolts nao vai prestar", "display_text_range": [15, 87], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910971829736624130, "in_reply_to_status_id_str": "910971829736624130", "in_reply_to_user_id": 103130914, "in_reply_to_user_id_str": "103130914", "in_reply_to_screen_name": "cabelloartois", "user": {"id": 798933169022128128, "id_str": "798933169022128128", "name": "Bia #HeLikeThat", "screen_name": "laujaguar5h", "location": "Lauren ", "url": "https://fifthharmony.com/", "description": "Pontes n\u00e3o muros\u2698", "translator_type": "none", "protected": false, "verified": false, "followers_count": 5145, "friends_count": 5136, "listed_count": 1, "favourites_count": 4735, "statuses_count": 4710, "created_at": "Wed Nov 16 16:58:05 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909449180527153152/DMbgmpXM_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909449180527153152/DMbgmpXM_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/798933169022128128/1505664554", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "cabelloartois", "name": "Dope'Ste", "id": 103130914, "id_str": "103130914", "indices": [0, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093350401, "id_str": "910976111093350401", "text": "I liked a @YouTube video https://t.co/F1YtePDq60 Cotarvoid - Trial Papers [Rewind Remix Release]", "source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 853650086, "id_str": "853650086", "name": "Galaxy \ud83d\udcaf", "screen_name": "GalaxyPlaysYT_", "location": "United Kingdom", "url": "https://www.youtube.com/channel/UCV4_tg7lHWA1MeuKdZ-W7rQ", "description": "Come subscribe to my yt \ud83d\ude0a| Come Subscribe https://www.youtube.com/channel/UCV4_tg7lHWA1MeuKdZ-W7rQ  My Sponsors @DevilGrip Live Life to the fullest \ud83d\udc4f|", "translator_type": "none", "protected": false, "verified": false, "followers_count": 276, "friends_count": 700, "listed_count": 9, "favourites_count": 6948, "statuses_count": 6987, "created_at": "Sat Sep 29 21:47:23 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/875992640864571392/qlarS2dU_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/875992640864571392/qlarS2dU_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/853650086/1480084937", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/F1YtePDq60", "expanded_url": "http://youtu.be/edQrK_3ruXg?a", "display_url": "youtu.be/edQrK_3ruXg?a", "indices": [25, 48]}], "user_mentions": [{"screen_name": "YouTube", "name": "YouTube", "id": 10228272, "id_str": "10228272", "indices": [10, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097647110, "id_str": "910976111097647110", "text": "@emmalea23 This is adulting goals.", "display_text_range": [11, 34], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910972539685490688, "in_reply_to_status_id_str": "910972539685490688", "in_reply_to_user_id": 44938274, "in_reply_to_user_id_str": "44938274", "in_reply_to_screen_name": "emmalea23", "user": {"id": 833887892732837889, "id_str": "833887892732837889", "name": "Erin Doerksen", "screen_name": "eleighdoe", "location": "Newton, KS", "url": "http://www.buildersports.com/recruiting/0/18.php", "description": "Southwestern Head Cheer Coach", "translator_type": "none", "protected": false, "verified": false, "followers_count": 44, "friends_count": 70, "listed_count": 0, "favourites_count": 144, "statuses_count": 133, "created_at": "Tue Feb 21 03:55:41 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910600884186488838/xcrKI0Gs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910600884186488838/xcrKI0Gs_normal.jpg", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "emmalea23", "name": "Emma Bradley", "id": 44938274, "id_str": "44938274", "indices": [0, 10]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093342208, "id_str": "910976111093342208", "text": ".@kevinreindeer \u306eSH-02G\u304c\u307e\u305f\u30ea\u30d6\u30fc\u30c8\u3057\u307e\u3057\u305f (\u672c\u65e5 1\u56de\u76ee\uff0c\u901a\u7b97 90\u56de\u76ee) #rebootter", "source": "<a href=\"http://stackrmobile.com/misc/rebootter.html\" rel=\"nofollow\">Rebootter</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 324332971, "id_str": "324332971", "name": "\u3051\u3073\u3093", "screen_name": "kevinreindeer", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 11, "friends_count": 83, "listed_count": 0, "favourites_count": 17, "statuses_count": 1457, "created_at": "Sun Jun 26 12:26:28 +0000 2011", "utc_offset": 32400, "time_zone": "Tokyo", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2538424672/twipple1345817096544_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2538424672/twipple1345817096544_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "rebootter", "indices": [52, 62]}], "urls": [], "user_mentions": [{"screen_name": "kevinreindeer", "name": "\u3051\u3073\u3093", "id": 324332971, "id_str": "324332971", "indices": [1, 15]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111122763777, "id_str": "910976111122763777", "text": "RT @g1: Nestl\u00e9 tem de vender marcas at\u00e9 outubro para aprovar compra da Garoto https://t.co/2HxGiEN46F #G1 https://t.co/HBbKVOK46U", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 76448642, "id_str": "76448642", "name": "Chamber Sierpinski", "screen_name": "ChamberSierpins", "location": "Guaruja/SP", "url": null, "description": "Eu n\u00e3o sei se choro, se sumo ou se finjo que estou bem.\nSentindo falta do que fomos um dia!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 386, "friends_count": 370, "listed_count": 22, "favourites_count": 39733, "statuses_count": 29978, "created_at": "Tue Sep 22 21:00:23 +0000 2009", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "642D8B", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, "profile_link_color": "FF0000", "profile_sidebar_border_color": "65B0DA", "profile_sidebar_fill_color": "7AC3EE", "profile_text_color": "3D1957", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/755837606412316672/tl-qgU5__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/755837606412316672/tl-qgU5__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/76448642/1479655658", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 01:01:00 +0000 2017", "id": 910670162507870210, "id_str": "910670162507870210", "text": "Nestl\u00e9 tem de vender marcas at\u00e9 outubro para aprovar compra da Garoto https://t.co/2HxGiEN46F #G1 https://t.co/HBbKVOK46U", "display_text_range": [0, 97], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 8802752, "id_str": "8802752", "name": "G1", "screen_name": "g1", "location": "Brasil", "url": "http://g1.com.br", "description": "O portal de not\u00edcias da Globo", "translator_type": "none", "protected": false, "verified": true, "followers_count": 9477672, "friends_count": 120, "listed_count": 17278, "favourites_count": 131, "statuses_count": 565907, "created_at": "Tue Sep 11 04:05:49 +0000 2007", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F0F0F0", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000030360744/cce1da5d2f091b9eb6a9eb9e37c28831.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000030360744/cce1da5d2f091b9eb6a9eb9e37c28831.jpeg", "profile_background_tile": false, "profile_link_color": "A80000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/895772431457157121/n8bWszjh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/895772431457157121/n8bWszjh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/8802752/1503341622", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 160, "reply_count": 47, "retweet_count": 109, "favorite_count": 420, "entities": {"hashtags": [{"text": "G1", "indices": [94, 97]}], "urls": [{"url": "https://t.co/2HxGiEN46F", "expanded_url": "https://glo.bo/2fc1uoT", "display_url": "glo.bo/2fc1uoT", "indices": [70, 93]}], "user_mentions": [], "symbols": [], "media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [98, 121], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [98, 121], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "G1", "indices": [102, 105]}], "urls": [{"url": "https://t.co/2HxGiEN46F", "expanded_url": "https://glo.bo/2fc1uoT", "display_url": "glo.bo/2fc1uoT", "indices": [78, 101]}], "user_mentions": [{"screen_name": "g1", "name": "G1", "id": 8802752, "id_str": "8802752", "indices": [3, 6]}], "symbols": [], "media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}, "source_status_id": 910670162507870210, "source_status_id_str": "910670162507870210", "source_user_id": 8802752, "source_user_id_str": "8802752"}]}, "extended_entities": {"media": [{"id": 910621434455691266, "id_str": "910621434455691266", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "media_url_https": "https://pbs.twimg.com/media/DKMtXrWWkAITIO7.jpg", "url": "https://t.co/HBbKVOK46U", "display_url": "pic.twitter.com/HBbKVOK46U", "expanded_url": "https://twitter.com/g1/status/910670162507870210/photo/1", "type": "photo", "sizes": {"large": {"w": 1000, "h": 750, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1000, "h": 750, "resize": "fit"}}, "source_status_id": 910670162507870210, "source_status_id_str": "910670162507870210", "source_user_id": 8802752, "source_user_id_str": "8802752"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604666"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111110213633, "id_str": "910976111110213633", "text": "RT @iraqiahmed584: \u0627\u0644\u0633\u0644\u0627\u0645 \u0639\u0644\u064a\u0643\u0645 \u0634\u0628\u0627\u0628::\n\n\u0627\u062a\u0645\u0646\u0649 \u062f\u0639\u0645\u0643\u0645 \u0634\u0628\u0627\u0628 \u0644\u0627\u062a\u0642\u0635\u0631\u0648\u0646 \u0628\u0627\u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643 \u0628\u0627\u0644\u0642\u0646\u0627\u0629 \u0648\u0644\u0627\u064a\u0643 \u0644\u0644\u0645\u0642\u0637\u0639\n\u0631\u0627\u0628\u0637... https://t.co/4HJkWE38C6", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 885321981243142144, "id_str": "885321981243142144", "name": "Ashly Gregory", "screen_name": "tiososiligh1985", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 11, "friends_count": 68, "listed_count": 0, "favourites_count": 1393, "statuses_count": 1387, "created_at": "Thu Jul 13 02:16:23 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ru", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/886895997904990208/lIYT8DsG_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/886895997904990208/lIYT8DsG_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Feb 13 20:30:38 +0000 2017", "id": 831239179304566784, "id_str": "831239179304566784", "text": "\u0627\u0644\u0633\u0644\u0627\u0645 \u0639\u0644\u064a\u0643\u0645 \u0634\u0628\u0627\u0628::\n\n\u0627\u062a\u0645\u0646\u0649 \u062f\u0639\u0645\u0643\u0645 \u0634\u0628\u0627\u0628 \u0644\u0627\u062a\u0642\u0635\u0631\u0648\u0646 \u0628\u0627\u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643 \u0628\u0627\u0644\u0642\u0646\u0627\u0629 \u0648\u0644\u0627\u064a\u0643 \u0644\u0644\u0645\u0642\u0637\u0639\n\u0631\u0627\u0628\u0637... https://t.co/4HJkWE38C6", "source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3348188788, "id_str": "3348188788", "name": "iMr-Mask", "screen_name": "iraqiahmed584", "location": "Iraq", "url": "http://www.youtube.com/c/MrMask20", "description": "\u0642\u0646\u0627\u0629 #iMr_Mask \n\n \u0625\u0646\u0633\u062a\u062c\u0631\u0627\u0645ahmed_aliarqi@", "translator_type": "none", "protected": false, "verified": false, "followers_count": 76, "friends_count": 155, "listed_count": 0, "favourites_count": 25, "statuses_count": 72, "created_at": "Sat Jun 27 23:20:36 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/614945786128789504/d685gmBU.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/614945786128789504/d685gmBU.jpg", "profile_background_tile": true, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/720971623164211201/CnzxRUAy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/720971623164211201/CnzxRUAy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3348188788/1457944252", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 7, "favorite_count": 4, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4HJkWE38C6", "expanded_url": "http://fb.me/18JuuNKIv", "display_url": "fb.me/18JuuNKIv", "indices": [87, 110]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/4HJkWE38C6", "expanded_url": "http://fb.me/18JuuNKIv", "display_url": "fb.me/18JuuNKIv", "indices": [106, 129]}], "user_mentions": [{"screen_name": "iraqiahmed584", "name": "iMr-Mask", "id": 3348188788, "id_str": "3348188788", "indices": [3, 17]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604663"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101833218, "id_str": "910976111101833218", "text": "RT @tjd117: Nice \u2600\ufe0f break but glad to have the hairy one back with me!!! #bestmate https://t.co/sfdHzH4NeA", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 716611948507435008, "id_str": "716611948507435008", "name": "Melanie Lloyd", "screen_name": "melanielloyd59", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 288, "friends_count": 453, "listed_count": 8, "favourites_count": 62922, "statuses_count": 18417, "created_at": "Sun Apr 03 13:02:57 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:07:08 +0000 2017", "id": 910943494021304320, "id_str": "910943494021304320", "text": "Nice \u2600\ufe0f break but glad to have the hairy one back with me!!! #bestmate https://t.co/sfdHzH4NeA", "display_text_range": [0, 70], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 363898354, "id_str": "363898354", "name": "TJ", "screen_name": "tjd117", "location": "UK", "url": null, "description": "5yr old Working GPD (and his best mate) living the dream walking the thin blue line", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1101, "friends_count": 591, "listed_count": 13, "favourites_count": 6897, "statuses_count": 2174, "created_at": "Sun Aug 28 21:44:09 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904708429377363969/kBgcdtA4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904708429377363969/kBgcdtA4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/363898354/1446854180", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 4, "favorite_count": 19, "entities": {"hashtags": [{"text": "bestmate", "indices": [61, 70]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [71, 94], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [71, 94], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "bestmate", "indices": [73, 82]}], "urls": [], "user_mentions": [{"screen_name": "tjd117", "name": "TJ", "id": 363898354, "id_str": "363898354", "indices": [3, 10]}], "symbols": [], "media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "source_status_id": 910943494021304320, "source_status_id_str": "910943494021304320", "source_user_id": 363898354, "source_user_id_str": "363898354"}]}, "extended_entities": {"media": [{"id": 910943476799373312, "id_str": "910943476799373312", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRSRAkWAAAedet.jpg", "url": "https://t.co/sfdHzH4NeA", "display_url": "pic.twitter.com/sfdHzH4NeA", "expanded_url": "https://twitter.com/tjd117/status/910943494021304320/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "source_status_id": 910943494021304320, "source_status_id_str": "910943494021304320", "source_user_id": 363898354, "source_user_id_str": "363898354"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097651200, "id_str": "910976111097651200", "text": "Basta olhar pra voc\u00ea, pra minha boca querer um beijo bis...\ud83c\udfb6\ud83c\udfb6\n\nO swing da voz do Seu Jorge.", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 827970778587082752, "id_str": "827970778587082752", "name": "Cac\u00e1 \ud83d\udeeb", "screen_name": "_passageira_", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 638, "friends_count": 637, "listed_count": 1, "favourites_count": 4, "statuses_count": 16988, "created_at": "Sat Feb 04 20:03:11 +0000 2017", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909401886113107968/rDhdGE2j_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909401886113107968/rDhdGE2j_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/827970778587082752/1489835200", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114366976, "id_str": "910976111114366976", "text": "RT @ESPNRun: #Atletas #ESPNRun @flor_vigna estuvo con @KzBelen en la presentaci\u00f3n de #LaCarreraDelMar. @ESPNRedes https://t.co/ltFozgpk4r", "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M2)</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 714547341311672324, "id_str": "714547341311672324", "name": "Keep Calm Love You", "screen_name": "DybalaMyHeroe10", "location": " [Boca Juniors mi Todo.RMC.F]", "url": "http://facebook.com/Fl\u00f6\u00f6rG\u00f6nz\u00e4l\u00ebz", "description": "{P.DYBALA\ud83d\udc8e}C\ud83d\udc9bA\ud83d\udc99B\ud83d\udc9bJ \u270c", "translator_type": "none", "protected": false, "verified": false, "followers_count": 473, "friends_count": 2316, "listed_count": 11, "favourites_count": 20171, "statuses_count": 54788, "created_at": "Mon Mar 28 20:18:56 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/906631554721615873/f28Yzu_m_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906631554721615873/f28Yzu_m_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/714547341311672324/1505777770", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:45:13 +0000 2017", "id": 910877581292994561, "id_str": "910877581292994561", "text": "#Atletas #ESPNRun @flor_vigna estuvo con @KzBelen en la presentaci\u00f3n de #LaCarreraDelMar. @ESPNRedes https://t.co/ltFozgpk4r", "display_text_range": [0, 100], "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327470494, "id_str": "327470494", "name": "ESPN Run", "screen_name": "ESPNRun", "location": null, "url": "http://www.espnrun.com", "description": "Programa \u00edntegramente dedicado al running. Horarios: http://guia.espndeportes.com - http://terminosdeuso.espn-la.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 32842, "friends_count": 39, "listed_count": 386, "favourites_count": 172, "statuses_count": 9277, "created_at": "Fri Jul 01 16:31:46 +0000 2011", "utc_offset": -10800, "time_zone": "Buenos Aires", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000177285161/sgGPmfy6.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000177285161/sgGPmfy6.png", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/639820123369570304/0acGZMiD_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/639820123369570304/0acGZMiD_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327470494/1505845550", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": [200948140], "is_quote_status": false, "quote_count": 11, "reply_count": 12, "retweet_count": 375, "favorite_count": 570, "entities": {"hashtags": [{"text": "Atletas", "indices": [0, 8]}, {"text": "ESPNRun", "indices": [9, 17]}, {"text": "LaCarreraDelMar", "indices": [72, 88]}], "urls": [], "user_mentions": [{"screen_name": "flor_vigna", "name": "Flor Vigna", "id": 2468662926, "id_str": "2468662926", "indices": [18, 29]}, {"screen_name": "KzBelen", "name": "Bel\u00e9n Casetta", "id": 3294159232, "id_str": "3294159232", "indices": [41, 49]}, {"screen_name": "ESPNRedes", "name": "ESPN Redes", "id": 1525614408, "id_str": "1525614408", "indices": [90, 100]}], "symbols": [], "media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [101, 124], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [101, 124], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "Atletas", "indices": [13, 21]}, {"text": "ESPNRun", "indices": [22, 30]}, {"text": "LaCarreraDelMar", "indices": [85, 101]}], "urls": [], "user_mentions": [{"screen_name": "ESPNRun", "name": "ESPN Run", "id": 327470494, "id_str": "327470494", "indices": [3, 11]}, {"screen_name": "flor_vigna", "name": "Flor Vigna", "id": 2468662926, "id_str": "2468662926", "indices": [31, 42]}, {"screen_name": "KzBelen", "name": "Bel\u00e9n Casetta", "id": 3294159232, "id_str": "3294159232", "indices": [54, 62]}, {"screen_name": "ESPNRedes", "name": "ESPN Redes", "id": 1525614408, "id_str": "1525614408", "indices": [103, 113]}], "symbols": [], "media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}, "source_status_id": 910877581292994561, "source_status_id_str": "910877581292994561", "source_user_id": 327470494, "source_user_id_str": "327470494"}]}, "extended_entities": {"media": [{"id": 910877556072763394, "id_str": "910877556072763394", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQWT6uX0AI1yyG.jpg", "url": "https://t.co/ltFozgpk4r", "display_url": "pic.twitter.com/ltFozgpk4r", "expanded_url": "https://twitter.com/ESPNRun/status/910877581292994561/photo/1", "type": "photo", "sizes": {"large": {"w": 1280, "h": 960, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}}, "source_status_id": 910877581292994561, "source_status_id_str": "910877581292994561", "source_user_id": 327470494, "source_user_id_str": "327470494"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111097597952, "id_str": "910976111097597952", "text": "RT @giner_joan: No parem, cap a Sanfeliu a seguir cridant a la vaga. https://t.co/pYjIe9SvxS", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 314477818, "id_str": "314477818", "name": "Jordi Pijoan", "screen_name": "pijoan_jordi", "location": "Querol", "url": null, "description": "Pare... Eng. agr\u00edcola i ambient\u00f2leg\nProfessor Ci\u00e8ncies. Natura /meteo/ bici/ ADF.../ estones Alcalde Querol http://es.linkedin.com/in/jordi-pijoa\u2026", "translator_type": "none", "protected": false, "verified": false, "followers_count": 502, "friends_count": 610, "listed_count": 16, "favourites_count": 1905, "statuses_count": 7598, "created_at": "Fri Jun 10 09:55:57 +0000 2011", "utc_offset": 7200, "time_zone": "Berlin", "geo_enabled": true, "lang": "ca", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909083828307808257/wWQPM37m_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909083828307808257/wWQPM37m_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/314477818/1355175250", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 16:42:46 +0000 2017", "id": 910907164910391296, "id_str": "910907164910391296", "text": "No parem, cap a Sanfeliu a seguir cridant a la vaga. https://t.co/pYjIe9SvxS", "display_text_range": [0, 52], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 400892490, "id_str": "400892490", "name": "Joan Giner", "screen_name": "giner_joan", "location": "Cornell\u00e0 de Llobregat", "url": "https://joanginermiguelez.wordpress.com", "description": "De @podem_cat i diputat per @catsiqueespot. Anticapitalista. Soc dels que pensa que l'escala del desig no te barana. #Mar\u00e7al", "translator_type": "none", "protected": false, "verified": true, "followers_count": 5238, "friends_count": 1053, "listed_count": 87, "favourites_count": 1304, "statuses_count": 6923, "created_at": "Sat Oct 29 18:46:04 +0000 2011", "utc_offset": -7200, "time_zone": "Greenland", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877167725084385282/ISOnQp4E_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877167725084385282/ISOnQp4E_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/400892490/1444051481", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 1, "retweet_count": 29, "favorite_count": 36, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [53, 76], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "giner_joan", "name": "Joan Giner", "id": 400892490, "id_str": "400892490", "indices": [3, 14]}], "symbols": [], "media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}, "source_status_id": 910907164910391296, "source_status_id_str": "910907164910391296", "source_user_id": 400892490, "source_user_id_str": "400892490"}]}, "extended_entities": {"media": [{"id": 910907145297842176, "id_str": "910907145297842176", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQxOPLX0AABmOM.jpg", "url": "https://t.co/pYjIe9SvxS", "display_url": "pic.twitter.com/pYjIe9SvxS", "expanded_url": "https://twitter.com/giner_joan/status/910907164910391296/photo/1", "type": "photo", "sizes": {"medium": {"w": 731, "h": 976, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 509, "h": 680, "resize": "fit"}, "large": {"w": 731, "h": 976, "resize": "fit"}}, "source_status_id": 910907164910391296, "source_status_id_str": "910907164910391296", "source_user_id": 400892490, "source_user_id_str": "400892490"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604660"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101833220, "id_str": "910976111101833220", "text": "RT @paperrrclip: Mario Kart for iMessage should be a thing", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 404494749, "id_str": "404494749", "name": "kt adams", "screen_name": "ktadams7", "location": "Mason City, IA", "url": "https://www.instagram.com/katmarrrrie/", "description": "mason city, ia \u2022 niacc", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1055, "friends_count": 958, "listed_count": 2, "favourites_count": 7988, "statuses_count": 3980, "created_at": "Fri Nov 04 00:40:19 +0000 2011", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/784053787/9159035bc2c736bda43ac196fad4bcd8.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/784053787/9159035bc2c736bda43ac196fad4bcd8.jpeg", "profile_background_tile": true, "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/891482888121839616/Bl3z2jy7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/891482888121839616/Bl3z2jy7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/404494749/1458525941", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 04:59:29 +0000 2017", "id": 910367790107906048, "id_str": "910367790107906048", "text": "Mario Kart for iMessage should be a thing", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 169774853, "id_str": "169774853", "name": "mar", "screen_name": "paperrrclip", "location": null, "url": "https://www.instagram.com/svtmar/", "description": "princess of my household", "translator_type": "none", "protected": false, "verified": false, "followers_count": 948, "friends_count": 374, "listed_count": 3, "favourites_count": 10533, "statuses_count": 24094, "created_at": "Fri Jul 23 03:50:13 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_tile": true, "profile_link_color": "F5ABB5", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "009999", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/169774853/1505354274", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 337, "reply_count": 15, "retweet_count": 7207, "favorite_count": 10459, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "paperrrclip", "name": "mar", "id": 169774853, "id_str": "169774853", "indices": [3, 15]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111101775872, "id_str": "910976111101775872", "text": "RT @ChampionsLeague: \u26bd\ufe0f\ud83d\ude0d Goal of the Week \ud83d\ude0d\u26bd\ufe0f\n\nThis beauty from @Besiktas star @CenkTosun_ \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f \n\n#UCL https://t.co/6wCLCiGDuL", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 747889615286243328, "id_str": "747889615286243328", "name": "Reyhan Polat", "screen_name": "reyhnplat", "location": null, "url": null, "description": "Mustafa Kemal Atat\u00fcrk\n\u2764Be\u015fikta\u015fk\u2764", "translator_type": "none", "protected": false, "verified": false, "followers_count": 267, "friends_count": 230, "listed_count": 0, "favourites_count": 3796, "statuses_count": 578, "created_at": "Tue Jun 28 20:29:14 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "tr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904700288988270592/HnfL8g1d_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904700288988270592/HnfL8g1d_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/747889615286243328/1484410318", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 09:01:27 +0000 2017", "id": 910791069629124609, "id_str": "910791069629124609", "text": "\u26bd\ufe0f\ud83d\ude0d Goal of the Week \ud83d\ude0d\u26bd\ufe0f\n\nThis beauty from @Besiktas star @CenkTosun_ \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f \n\n#UCL https://t.co/6wCLCiGDuL", "display_text_range": [0, 80], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 627673190, "id_str": "627673190", "name": "#UCL", "screen_name": "ChampionsLeague", "location": "Nyon, Vaud", "url": "http://www.uefa.com/uefachampionsleague", "description": "The official home of the #UCL on Twitter. Spanish: @LigadeCampeones  U19: @UEFAYouthLeague \nYouTube: http://uefa.tv", "translator_type": "none", "protected": false, "verified": true, "followers_count": 17734892, "friends_count": 509, "listed_count": 16822, "favourites_count": 1060, "statuses_count": 51113, "created_at": "Thu Jul 05 19:43:40 +0000 2012", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "022330", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/616679637687648258/trkDBuou.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/616679637687648258/trkDBuou.jpg", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/616969183948054528/mF1Oxcly_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/616969183948054528/mF1Oxcly_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/627673190/1496665577", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 154, "reply_count": 174, "retweet_count": 7490, "favorite_count": 18923, "entities": {"hashtags": [{"text": "UCL", "indices": [76, 80]}], "urls": [], "user_mentions": [{"screen_name": "Besiktas", "name": "Be\u015fikta\u015f JK", "id": 259758878, "id_str": "259758878", "indices": [43, 52]}, {"screen_name": "CenkTosun_", "name": "Cenk Tosun", "id": 260195059, "id_str": "260195059", "indices": [58, 69]}], "symbols": [], "media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [81, 104], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "photo", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [81, 104], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "video", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 3800, "variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/480x480/lLGXQ1VVfIU_FUwI.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/240x240/z20ajAzJKjo0lR9C.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/pl/J4A3OKsd7J6BBVUc.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "UCL", "indices": [97, 101]}], "urls": [], "user_mentions": [{"screen_name": "ChampionsLeague", "name": "#UCL", "id": 627673190, "id_str": "627673190", "indices": [3, 19]}, {"screen_name": "Besiktas", "name": "Be\u015fikta\u015f JK", "id": 259758878, "id_str": "259758878", "indices": [64, 73]}, {"screen_name": "CenkTosun_", "name": "Cenk Tosun", "id": 260195059, "id_str": "260195059", "indices": [79, 90]}], "symbols": [], "media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [102, 125], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "photo", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}, "source_status_id": 910791069629124609, "source_status_id_str": "910791069629124609", "source_user_id": 627673190, "source_user_id_str": "627673190"}]}, "extended_entities": {"media": [{"id": 910791014767611905, "id_str": "910791014767611905", "indices": [102, 125], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910791014767611905/pu/img/jsuM7ZTAXaGoWhf1.jpg", "url": "https://t.co/6wCLCiGDuL", "display_url": "pic.twitter.com/6wCLCiGDuL", "expanded_url": "https://twitter.com/ChampionsLeague/status/910791069629124609/video/1", "type": "video", "sizes": {"large": {"w": 480, "h": 480, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 480, "resize": "fit"}}, "source_status_id": 910791069629124609, "source_status_id_str": "910791069629124609", "source_user_id": 627673190, "source_user_id_str": "627673190", "video_info": {"aspect_ratio": [1, 1], "duration_millis": 3800, "variants": [{"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/480x480/lLGXQ1VVfIU_FUwI.mp4"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/vid/240x240/z20ajAzJKjo0lR9C.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910791014767611905/pu/pl/J4A3OKsd7J6BBVUc.m3u8"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604661"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111118573568, "id_str": "910976111118573568", "text": "RT @LifeFacts: I LOVE THIS https://t.co/k8TQWpEECr", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 499146972, "id_str": "499146972", "name": "MaLou \u2661", "screen_name": "LOUISE76_", "location": "France", "url": null, "description": "\u2022 Louise 19yo | Rouen/N\u00eemes |", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1022, "friends_count": 1448, "listed_count": 10, "favourites_count": 2453, "statuses_count": 51555, "created_at": "Tue Feb 21 20:35:18 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "ACDED6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/694291439/ebd1e4a0ffe31c964faf762a61ee4d6c.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/694291439/ebd1e4a0ffe31c964faf762a61ee4d6c.jpeg", "profile_background_tile": true, "profile_link_color": "038543", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/899180266261970944/153bA5xu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/899180266261970944/153bA5xu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/499146972/1455560432", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 16:45:08 +0000 2017", "id": 910545371604160514, "id_str": "910545371604160514", "text": "I LOVE THIS https://t.co/k8TQWpEECr", "source": "<a href=\"http://bufferapp.com\" rel=\"nofollow\">Buffer</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 136627335, "id_str": "136627335", "name": "Life Facts", "screen_name": "LifeFacts", "location": "Life", "url": "http://takingfive.com", "description": "#LifeFacts Posting whatever I like that's true, funny, or just relatable. I do not own any posts. enjoy! hi@getmefamous.com", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 3020533, "friends_count": 2819, "listed_count": 7165, "favourites_count": 427, "statuses_count": 93928, "created_at": "Sat Apr 24 13:14:27 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/702602968147709952/D9TxvQJr.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/702602968147709952/D9TxvQJr.jpg", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/703241452499943424/zxb4iBDf_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/703241452499943424/zxb4iBDf_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/136627335/1456500367", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 2, "reply_count": 0, "retweet_count": 48, "favorite_count": 110, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "extended_entities": {"media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020486262784, "id_str": "910229020486262784", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 652, "h": 680, "resize": "fit"}, "large": {"w": 1438, "h": 1499, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1151, "h": 1200, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020565848064, "id_str": "910229020565848064", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 614, "resize": "fit"}, "large": {"w": 1439, "h": 1299, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1083, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020180078592, "id_str": "910229020180078592", "indices": [12, 35], "media_url": "http://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 1139, "resize": "fit"}, "large": {"w": 1439, "h": 1366, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 646, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": true, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LifeFacts", "name": "Life Facts", "id": 136627335, "id_str": "136627335", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "extended_entities": {"media": [{"id": 910229020276428800, "id_str": "910229020276428800", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKnUEAAN033.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 661, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1167, "resize": "fit"}, "large": {"w": 1439, "h": 1399, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020486262784, "id_str": "910229020486262784", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLZV4AAsW4b.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 652, "h": 680, "resize": "fit"}, "large": {"w": 1438, "h": 1499, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1151, "h": 1200, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020565848064, "id_str": "910229020565848064", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeLsUQAA-N9c.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 614, "resize": "fit"}, "large": {"w": 1439, "h": 1299, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 1083, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}, {"id": 910229020180078592, "id_str": "910229020180078592", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHIeKQV4AA7mny.jpg", "url": "https://t.co/k8TQWpEECr", "display_url": "pic.twitter.com/k8TQWpEECr", "expanded_url": "https://twitter.com/GirlsNoteBook/status/910229022847709184/photo/1", "type": "photo", "sizes": {"medium": {"w": 1200, "h": 1139, "resize": "fit"}, "large": {"w": 1439, "h": 1366, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 646, "resize": "fit"}}, "source_status_id": 910229022847709184, "source_status_id_str": "910229022847709184", "source_user_id": 259132164, "source_user_id_str": "259132164"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604665"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114297344, "id_str": "910976111114297344", "text": "1 Cellular(3g/4g/lte)\ub4f1\ub4f1 \uc140\uc774\ub77c \ubd88\ub9ac\uc6b0\ub294 \uae30\uc874\uc758 gsm/cdma\ub4f1\uc758 \uae30\uc220\ub4e4\uc740 \ubaa8\ub450 \ubc18\uacbd\uc774 \uc544\uc8fc \ud06c\uae30 \ub54c\ubb38\uc5d0 \ud070\uc9c0\uc5ed\uc744 \uce74\ubc14\ud568\uc73c\ub85c\uc11c \ubaa8\ubc14\uc77c\ud3f0\uc758 \uc8fc\ub41c \uae30\ub2a5\uc778 \ubcf4\uc774\uc2a4\uc5d0 \uaf2d \ud544\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \ub2e4\uc218\uc720\uc800\uc758 \ub370\uc774\ud0c0 \uc804\uc1a1\uc5d0\uc11c\ub294 \ucde8\uc57d\ud569\ub2c8\ub2e4.", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 512528666, "id_str": "512528666", "name": "\uc640\uc774\ud30c\uc774\ubd07", "screen_name": "wlan_bot", "location": "\uacf5\uc720\uae30\uc18d \uc548\ud14c\ub098\uc606", "url": null, "description": "\uac00\uc815\uacfc \uc624\ud53c\uc2a4\uc5d0\uc11c \uc0ac\uc6a9\ud558\ub294 \ubb34\uc120\ub79c\uacfc \uad00\ub828\ub418\uc11c \uc5b4\ub835\uc9c0\uc54a\uace0 \uc54c\uba74 \uc88b\uc744 \ub0b4\uc6a9\ub4e4\uc744 \ud2b8\uc717\ud558\ub294\uac8c \ucde8\uc9c0\uc785\ub2c8\ub2e4.  \uc9c8\ubb38\ub3c4 \uc8fc\uc2dc\uba74 \ucd5c\ub300\ud55c \ub2f5\ud574\ub4dc\ub9b4\uaed8\uc694.^^", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2323, "friends_count": 2098, "listed_count": 18, "favourites_count": 67, "statuses_count": 22186, "created_at": "Fri Mar 02 22:46:00 +0000 2012", "utc_offset": 36000, "time_zone": "Sydney", "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/2294475283/pdc0d04u1o5e8ap88dw8_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2294475283/pdc0d04u1o5e8ap88dw8_normal.png", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111106019328, "id_str": "910976111106019328", "text": "@CandelasRg Literalmente as\u00ed, porque por ahora TICS y tecnolog\u00eda son m\u00e1s bien \ud83d\udc47\ud83c\udffc https://t.co/rfpimgPKe0", "display_text_range": [12, 80], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975373764124672, "in_reply_to_status_id_str": "910975373764124672", "in_reply_to_user_id": 825123496284020738, "in_reply_to_user_id_str": "825123496284020738", "in_reply_to_screen_name": "CandelasRg", "user": {"id": 3320997965, "id_str": "3320997965", "name": "DavidLG__Madrid \ud83c\uddea\ud83c\uddf8", "screen_name": "DavidLG__", "location": "Comunidad de Madrid, Espa\u00f1a", "url": null, "description": "Espa\u00f1ol, madrile\u00f1o. Pol\u00edtica.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 515, "friends_count": 1265, "listed_count": 28, "favourites_count": 19300, "statuses_count": 27475, "created_at": "Fri Jun 12 14:04:00 +0000 2015", "utc_offset": 7200, "time_zone": "Madrid", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909423884977438723/cZycTGvN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909423884977438723/cZycTGvN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3320997965/1505827433", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": {"id": "3b111abdac0a7687", "url": "https://api.twitter.com/1.1/geo/id/3b111abdac0a7687.json", "place_type": "admin", "name": "Comunidad de Madrid", "full_name": "Comunidad de Madrid, Espa\u00f1a", "country_code": "ES", "country": "Espa\u00f1a", "bounding_box": {"type": "Polygon", "coordinates": [[[-4.579175, 39.884537], [-4.579175, 41.164911], [-3.053132, 41.164911], [-3.053132, 39.884537]]]}, "attributes": {}}, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "CandelasRg", "name": "Candelas Rg", "id": 825123496284020738, "id_str": "825123496284020738", "indices": [0, 11]}], "symbols": [], "media": [{"id": 910976101534531585, "id_str": "910976101534531585", "indices": [81, 104], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "url": "https://t.co/rfpimgPKe0", "display_url": "pic.twitter.com/rfpimgPKe0", "expanded_url": "https://twitter.com/DavidLG__/status/910976111106019328/photo/1", "type": "photo", "sizes": {"small": {"w": 196, "h": 150, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 196, "h": 150, "resize": "fit"}, "medium": {"w": 196, "h": 150, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910976101534531585, "id_str": "910976101534531585", "indices": [81, 104], "media_url": "http://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/DKRv8BLWAAENIyN.jpg", "url": "https://t.co/rfpimgPKe0", "display_url": "pic.twitter.com/rfpimgPKe0", "expanded_url": "https://twitter.com/DavidLG__/status/910976111106019328/photo/1", "type": "animated_gif", "sizes": {"small": {"w": 196, "h": 150, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 196, "h": 150, "resize": "fit"}, "medium": {"w": 196, "h": 150, "resize": "fit"}}, "video_info": {"aspect_ratio": [98, 75], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/DKRv8BLWAAENIyN.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028604662"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114321920, "id_str": "910976111114321920", "text": "RT @yisucrist: resumen del colegio en un bideo https://t.co/57QIDVQnxx", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 887474784241668097, "id_str": "887474784241668097", "name": "Sandra Olvera", "screen_name": "sandraolv23", "location": "______", "url": null, "description": "\ud83e\udd40\ud83d\udc9bya no espero nada de nadie.", "translator_type": "none", "protected": false, "verified": false, "followers_count": 17, "friends_count": 56, "listed_count": 0, "favourites_count": 97, "statuses_count": 97, "created_at": "Wed Jul 19 00:50:51 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907240392726384641/RKxxW7jE_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907240392726384641/RKxxW7jE_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/887474784241668097/1505137942", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 14:00:08 +0000 2017", "id": 910503848111955969, "id_str": "910503848111955969", "text": "resumen del colegio en un bideo https://t.co/57QIDVQnxx", "display_text_range": [0, 31], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 701423664, "id_str": "701423664", "name": "jezucrihto xd", "screen_name": "yisucrist", "location": "instagram: @yisucrist", "url": "https://www.facebook.com/yisucrist", "description": "nas\u00ed kat\u00f3lico xk jud\u00edos habia muxos. maria mahdalena tkm (L) shavales, ai k repetir santa sena cabrones. Paso d traidores. Youtube y Twitch: YisusOficial \u25b6\ufe0f", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 1136114, "friends_count": 394, "listed_count": 1634, "favourites_count": 100018, "statuses_count": 11316, "created_at": "Tue Jul 17 17:16:55 +0000 2012", "utc_offset": 7200, "time_zone": "Madrid", "geo_enabled": false, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "0099B9", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": false, "profile_link_color": "0099B9", "profile_sidebar_border_color": "5ED4DC", "profile_sidebar_fill_color": "95E8EC", "profile_text_color": "3C3940", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000407368218/fa1bad7b5fc824ed3deb233f7c586668_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000407368218/fa1bad7b5fc824ed3deb233f7c586668_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/701423664/1477393248", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 96, "reply_count": 45, "retweet_count": 2342, "favorite_count": 4035, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [32, 55], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "photo", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [32, 55], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "video", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 35500, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/pl/95wiuNOir9pOF-6F.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/vid/240x240/s2vfh6jjM-KYvOij.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "yisucrist", "name": "jezucrihto xd", "id": 701423664, "id_str": "701423664", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [47, 70], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "photo", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}, "source_status_id": 910503848111955969, "source_status_id_str": "910503848111955969", "source_user_id": 701423664, "source_user_id_str": "701423664"}]}, "extended_entities": {"media": [{"id": 910501750733508609, "id_str": "910501750733508609", "indices": [47, 70], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910501750733508609/pu/img/nBxJaB81-kmmRe4_.jpg", "url": "https://t.co/57QIDVQnxx", "display_url": "pic.twitter.com/57QIDVQnxx", "expanded_url": "https://twitter.com/yisucrist/status/910503848111955969/video/1", "type": "video", "sizes": {"medium": {"w": 460, "h": 460, "resize": "fit"}, "small": {"w": 340, "h": 340, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 460, "h": 460, "resize": "fit"}}, "source_status_id": 910503848111955969, "source_status_id_str": "910503848111955969", "source_user_id": 701423664, "source_user_id_str": "701423664", "video_info": {"aspect_ratio": [1, 1], "duration_millis": 35500, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/pl/95wiuNOir9pOF-6F.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910501750733508609/pu/vid/240x240/s2vfh6jjM-KYvOij.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114407936, "id_str": "910976111114407936", "text": "@Diija11 @10angel04_ \u0627\u062a\u0641\u0647*", "display_text_range": [21, 26], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": 910975336673923072, "in_reply_to_status_id_str": "910975336673923072", "in_reply_to_user_id": 792068862229549056, "in_reply_to_user_id_str": "792068862229549056", "in_reply_to_screen_name": "Diija11", "user": {"id": 1605838267, "id_str": "1605838267", "name": "Kingtan of Records\ud83d\udc51", "screen_name": "SAlmortada", "location": null, "url": null, "description": "Because in the end...\nWe're all just Dreamers...\nIn an Endless Universe...\ud83c\udf0c", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1157, "friends_count": 760, "listed_count": 2, "favourites_count": 247193, "statuses_count": 49835, "created_at": "Fri Jul 19 12:22:45 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910782641754034176/FZvjQwhm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910782641754034176/FZvjQwhm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1605838267/1505384578", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Diija11", "name": "\u200f\u05d7\u05d3\u05d9\u05d2'\u05d4 \u05b7", "id": 792068862229549056, "id_str": "792068862229549056", "indices": [0, 8]}, {"screen_name": "10angel04_", "name": "Angel \u029a\u25db\u025e", "id": 723793091015151617, "id_str": "723793091015151617", "indices": [9, 20]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093469189, "id_str": "910976111093469189", "text": "RT @TheFrogCastTCU: This game feels like 2014 OU. Simple  confidence and a team ready to take the next step. https://t.co/tH4x0BSnaq", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1016463055, "id_str": "1016463055", "name": "C Lumpkin-Lillo", "screen_name": "CarolLumpkin", "location": null, "url": null, "description": "GO FROGS! Riff Ram Bah Zoo!!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 177, "friends_count": 584, "listed_count": 2, "favourites_count": 40273, "statuses_count": 3457, "created_at": "Mon Dec 17 01:42:16 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/901441150443286528/JVxaYexW_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/901441150443286528/JVxaYexW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1016463055/1480775844", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 13:49:40 +0000 2017", "id": 910501215083073537, "id_str": "910501215083073537", "text": "This game feels like 2014 OU. Simple  confidence and a team ready to take the next step. https://t.co/tH4x0BSnaq", "display_text_range": [0, 88], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3424981162, "id_str": "3424981162", "name": "Geoff Mitchell", "screen_name": "TheFrogCastTCU", "location": "The Carter ", "url": null, "description": "Covering TCU, Big 12 and recruiting for 24/7 http://HornedFrogBlitz.com", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2015, "friends_count": 1195, "listed_count": 32, "favourites_count": 70134, "statuses_count": 15364, "created_at": "Sat Aug 15 23:19:54 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/909388155597541376/iU7X6SoZ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/909388155597541376/iU7X6SoZ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3424981162/1502222525", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910497060901724160, "quoted_status_id_str": "910497060901724160", "quoted_status": {"created_at": "Wed Sep 20 13:33:10 +0000 2017", "id": 910497060901724160, "id_str": "910497060901724160", "text": "Calling all Frogs! It is time!", "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1377224900, "id_str": "1377224900", "name": "Gary Patterson", "screen_name": "TCUCoachP", "location": "Fort Worth, TX", "url": "http://TCUFTW.com", "description": "Husband, Father, Head Football Coach at TCU #GoFrogs #FrogFam", "translator_type": "none", "protected": false, "verified": true, "followers_count": 74735, "friends_count": 17569, "listed_count": 330, "favourites_count": 680, "statuses_count": 5804, "created_at": "Wed Apr 24 14:47:52 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "252561", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1377224900/1501560878", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 16, "reply_count": 40, "retweet_count": 210, "favorite_count": 1100, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 5, "retweet_count": 6, "favorite_count": 50, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/tH4x0BSnaq", "expanded_url": "https://twitter.com/tcucoachp/status/910497060901724160", "display_url": "twitter.com/tcucoachp/stat\u2026", "indices": [89, 112]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "quoted_status_id": 910497060901724160, "quoted_status_id_str": "910497060901724160", "quoted_status": {"created_at": "Wed Sep 20 13:33:10 +0000 2017", "id": 910497060901724160, "id_str": "910497060901724160", "text": "Calling all Frogs! It is time!", "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1377224900, "id_str": "1377224900", "name": "Gary Patterson", "screen_name": "TCUCoachP", "location": "Fort Worth, TX", "url": "http://TCUFTW.com", "description": "Husband, Father, Head Football Coach at TCU #GoFrogs #FrogFam", "translator_type": "none", "protected": false, "verified": true, "followers_count": 74735, "friends_count": 17569, "listed_count": 330, "favourites_count": 680, "statuses_count": 5804, "created_at": "Wed Apr 24 14:47:52 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "252561", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/852145439/c8b05eed320bdf98f2ccb8d2af1b0b00.jpeg", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/746052541109014528/slzQc4TB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1377224900/1501560878", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 16, "reply_count": 40, "retweet_count": 210, "favorite_count": 1100, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/tH4x0BSnaq", "expanded_url": "https://twitter.com/tcucoachp/status/910497060901724160", "display_url": "twitter.com/tcucoachp/stat\u2026", "indices": [109, 132]}], "user_mentions": [{"screen_name": "TheFrogCastTCU", "name": "Geoff Mitchell", "id": 3424981162, "id_str": "3424981162", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604659"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111085006849, "id_str": "910976111085006849", "text": "RT @Teookumura: !!!! \ud83d\udd25 https://t.co/u7uObMr4mG", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4049481796, "id_str": "4049481796", "name": "Jotaro Kuj\u014d", "screen_name": "tkshboy", "location": "Morioh town", "url": null, "description": "\u2022Paris - Shibuya. Japan \ud83c\udf0a babyboo \ud83d\udc98 #JoJoSquad", "translator_type": "none", "protected": false, "verified": false, "followers_count": 145, "friends_count": 144, "listed_count": 6, "favourites_count": 3349, "statuses_count": 7758, "created_at": "Mon Oct 26 23:13:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4049481796/1504997926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 19:27:15 +0000 2017", "id": 910948558513299458, "id_str": "910948558513299458", "text": "!!!! \ud83d\udd25 https://t.co/u7uObMr4mG", "display_text_range": [0, 6], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1089930739, "id_str": "1089930739", "name": "Taiga", "screen_name": "Teookumura", "location": "Shohoku high school", "url": "http://teookumura.tumblr.com/", "description": "MASTER BRUCE YEAH IM THE COLDEST @srmkth", "translator_type": "regular", "protected": false, "verified": false, "followers_count": 344, "friends_count": 97, "listed_count": 29, "favourites_count": 2196, "statuses_count": 47005, "created_at": "Mon Jan 14 19:25:32 +0000 2013", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000089462654/6a8d4d7517d6fb5dad4f3e06c641dd6e.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000089462654/6a8d4d7517d6fb5dad4f3e06c641dd6e.jpeg", "profile_background_tile": true, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908083619800993792/cdFkirar_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908083619800993792/cdFkirar_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1089930739/1505655734", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 858959450685788160, "quoted_status_id_str": "858959450685788160", "quoted_status": {"created_at": "Mon May 01 08:21:06 +0000 2017", "id": 858959450685788160, "id_str": "858959450685788160", "text": "@THEDAMSO alter Ips\u00e9it\u00e9 \u2713 https://t.co/ro4P0zcUJD", "display_text_range": [0, 25], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 529836126, "in_reply_to_user_id_str": "529836126", "in_reply_to_screen_name": "THEDAMSO", "user": {"id": 4049481796, "id_str": "4049481796", "name": "Jotaro Kuj\u014d", "screen_name": "tkshboy", "location": "Morioh town", "url": null, "description": "\u2022Paris - Shibuya. Japan \ud83c\udf0a babyboo \ud83d\udc98 #JoJoSquad", "translator_type": "none", "protected": false, "verified": false, "followers_count": 145, "friends_count": 144, "listed_count": 6, "favourites_count": 3349, "statuses_count": 7757, "created_at": "Mon Oct 26 23:13:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4049481796/1504997926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 2, "retweet_count": 40, "favorite_count": 19, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "THEDAMSO", "name": "DAMSO", "id": 529836126, "id_str": "529836126", "indices": [0, 9]}], "symbols": [], "media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/u7uObMr4mG", "expanded_url": "https://twitter.com/tkshboy/status/858959450685788160", "display_url": "twitter.com/tkshboy/status\u2026", "indices": [7, 30]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "quoted_status_id": 858959450685788160, "quoted_status_id_str": "858959450685788160", "quoted_status": {"created_at": "Mon May 01 08:21:06 +0000 2017", "id": 858959450685788160, "id_str": "858959450685788160", "text": "@THEDAMSO alter Ips\u00e9it\u00e9 \u2713 https://t.co/ro4P0zcUJD", "display_text_range": [0, 25], "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 529836126, "in_reply_to_user_id_str": "529836126", "in_reply_to_screen_name": "THEDAMSO", "user": {"id": 4049481796, "id_str": "4049481796", "name": "Jotaro Kuj\u014d", "screen_name": "tkshboy", "location": "Morioh town", "url": null, "description": "\u2022Paris - Shibuya. Japan \ud83c\udf0a babyboo \ud83d\udc98 #JoJoSquad", "translator_type": "none", "protected": false, "verified": false, "followers_count": 145, "friends_count": 144, "listed_count": 6, "favourites_count": 3349, "statuses_count": 7757, "created_at": "Mon Oct 26 23:13:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905192963021701120/9TXMWKWC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4049481796/1504997926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 2, "retweet_count": 40, "favorite_count": 19, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "THEDAMSO", "name": "DAMSO", "id": 529836126, "id_str": "529836126", "indices": [0, 9]}], "symbols": [], "media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 858959434369912832, "id_str": "858959434369912832", "indices": [26, 49], "media_url": "http://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "media_url_https": "https://pbs.twimg.com/media/C-ujDfoW0AAci6Z.jpg", "url": "https://t.co/ro4P0zcUJD", "display_url": "pic.twitter.com/ro4P0zcUJD", "expanded_url": "https://twitter.com/LoicoMd/status/858959450685788160/photo/1", "type": "photo", "sizes": {"medium": {"w": 1163, "h": 1200, "resize": "fit"}, "small": {"w": 659, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1984, "h": 2048, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/u7uObMr4mG", "expanded_url": "https://twitter.com/tkshboy/status/858959450685788160", "display_url": "twitter.com/tkshboy/status\u2026", "indices": [23, 46]}], "user_mentions": [{"screen_name": "Teookumura", "name": "Taiga", "id": 1089930739, "id_str": "1089930739", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028604657"}
{"delete": {"status": {"id": 910867898050035712, "id_str": "910867898050035712", "user_id": 147608770, "user_id_str": "147608770"}, "timestamp_ms": "1506028605018"}}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111114321924, "id_str": "910976111114321924", "text": "RT @Harvey_Art: 'No, can you make sure we can see her face AND her ass?' https://t.co/f4RYCWlB9v", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2438565537, "id_str": "2438565537", "name": "yima", "screen_name": "gemmarx_", "location": "murzia", "url": null, "description": "///cry in red///", "translator_type": "none", "protected": false, "verified": false, "followers_count": 171, "friends_count": 190, "listed_count": 2, "favourites_count": 2032, "statuses_count": 3230, "created_at": "Wed Mar 26 20:55:34 +0000 2014", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/896520084667215872/nKyYN_Cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896520084667215872/nKyYN_Cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2438565537/1484598956", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Tue Sep 19 20:35:41 +0000 2017", "id": 910241003680026624, "id_str": "910241003680026624", "text": "'No, can you make sure we can see her face AND her ass?' https://t.co/f4RYCWlB9v", "display_text_range": [0, 56], "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 486108654, "id_str": "486108654", "name": "WolfSkullJack", "screen_name": "Harvey_Art", "location": "UK", "url": "http://www.wolfskulljack.com", "description": "Werewolf Queen shaped in human flesh. Etsy shop https://www.etsy.com/uk/shop/WolfSkullJack?ref=hdr_shop_menu", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6083, "friends_count": 1531, "listed_count": 129, "favourites_count": 42694, "statuses_count": 38705, "created_at": "Tue Feb 07 22:54:11 +0000 2012", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "181A1E", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/648605071614345216/mZN1emI5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/648605071614345216/mZN1emI5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/486108654/1497047653", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 512, "reply_count": 336, "retweet_count": 12300, "favorite_count": 29100, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 910240989717127168, "id_str": "910240989717127168", "indices": [57, 80], "media_url": "http://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Harvey_Art", "name": "WolfSkullJack", "id": 486108654, "id_str": "486108654", "indices": [3, 14]}], "symbols": [], "media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910241003680026624, "source_status_id_str": "910241003680026624", "source_user_id": 486108654, "source_user_id_str": "486108654"}]}, "extended_entities": {"media": [{"id": 910240989733883909, "id_str": "910240989733883909", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4UWkAUPMql.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910241003680026624, "source_status_id_str": "910241003680026624", "source_user_id": 486108654, "source_user_id_str": "486108654"}, {"id": 910240989717127168, "id_str": "910240989717127168", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "media_url_https": "https://pbs.twimg.com/media/DKHTW4QW4AAK6uz.jpg", "url": "https://t.co/f4RYCWlB9v", "display_url": "pic.twitter.com/f4RYCWlB9v", "expanded_url": "https://twitter.com/Harvey_Art/status/910241003680026624/photo/1", "type": "photo", "sizes": {"small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910241003680026624, "source_status_id_str": "910241003680026624", "source_user_id": 486108654, "source_user_id_str": "486108654"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604664"}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111105990656, "id_str": "910976111105990656", "text": "The group chat would be a war zone https://t.co/Ms3Py23UbF", "display_text_range": [0, 34], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1005030728, "id_str": "1005030728", "name": "\u263cSol\u263c", "screen_name": "sunnnsational", "location": "Riddim island ", "url": "https://soundcloud.com/unnnshineee", "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 842, "friends_count": 347, "listed_count": 5, "favourites_count": 29899, "statuses_count": 29887, "created_at": "Tue Dec 11 22:33:03 +0000 2012", "utc_offset": -14400, "time_zone": "Eastern Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/908386848719994880/QhfewAkl_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908386848719994880/QhfewAkl_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1005030728/1495904299", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "quoted_status_id": 910367790107906048, "quoted_status_id_str": "910367790107906048", "quoted_status": {"created_at": "Wed Sep 20 04:59:29 +0000 2017", "id": 910367790107906048, "id_str": "910367790107906048", "text": "Mario Kart for iMessage should be a thing", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 169774853, "id_str": "169774853", "name": "mar", "screen_name": "paperrrclip", "location": null, "url": "https://www.instagram.com/svtmar/", "description": "princess of my household", "translator_type": "none", "protected": false, "verified": false, "followers_count": 948, "friends_count": 374, "listed_count": 3, "favourites_count": 10533, "statuses_count": 24094, "created_at": "Fri Jul 23 03:50:13 +0000 2010", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "131516", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000169547172/fYgCqeX4.jpeg", "profile_background_tile": true, "profile_link_color": "F5ABB5", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "009999", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900224913834946561/t9ndaO7__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/169774853/1505354274", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 337, "reply_count": 15, "retweet_count": 7207, "favorite_count": 10459, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en"}, "is_quote_status": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/Ms3Py23UbF", "expanded_url": "https://twitter.com/paperrrclip/status/910367790107906048", "display_url": "twitter.com/paperrrclip/st\u2026", "indices": [35, 58]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028604662"}
{"delete": {"status": {"id": 347777947173785600, "id_str": "347777947173785600", "user_id": 184229350, "user_id_str": "184229350"}, "timestamp_ms": "1506028605059"}}
{"delete": {"status": {"id": 568552960587927553, "id_str": "568552960587927553", "user_id": 425281150, "user_id_str": "425281150"}, "timestamp_ms": "1506028605132"}}
{"created_at": "Thu Sep 21 21:16:44 +0000 2017", "id": 910976111093350402, "id_str": "910976111093350402", "text": "RT @SSWAN0221: 170920\uc18c\ub9ac\ubc14\ub2e4 \ub808\uce74 #\uc6ec\ub514 #Wendy 3p https://t.co/yfKTq4PkZ7", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 885075480994566145, "id_str": "885075480994566145", "name": "Red Velvet", "screen_name": "RVRedFlavorRV", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 13, "friends_count": 325, "listed_count": 0, "favourites_count": 1303, "statuses_count": 2039, "created_at": "Wed Jul 12 09:56:53 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pl", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904831623417487360/OaYKnGkm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904831623417487360/OaYKnGkm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/885075480994566145/1504522177", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 15:27:19 +0000 2017", "id": 910525790378278912, "id_str": "910525790378278912", "text": "170920\uc18c\ub9ac\ubc14\ub2e4 \ub808\uce74 #\uc6ec\ub514 #Wendy 3p https://t.co/yfKTq4PkZ7", "display_text_range": [0, 27], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4297284145, "id_str": "4297284145", "name": "\ud83c\udf4aSSW0221\ud83c\udf4a", "screen_name": "SSWAN0221", "location": null, "url": "http://www.youtube.com/c/ssw0221", "description": "Wendy \uc6ec\ub514", "translator_type": "none", "protected": false, "verified": false, "followers_count": 19864, "friends_count": 16, "listed_count": 629, "favourites_count": 2, "statuses_count": 730, "created_at": "Fri Nov 20 04:37:49 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/882112027300200448/c-3kPWKm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/882112027300200448/c-3kPWKm_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 12, "reply_count": 1, "retweet_count": 797, "favorite_count": 776, "entities": {"hashtags": [{"text": "\uc6ec\ub514", "indices": [14, 17]}, {"text": "Wendy", "indices": [18, 24]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 910525727593840641, "id_str": "910525727593840641", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}}, {"id": 910525727589638144, "id_str": "910525727589638144", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\uc6ec\ub514", "indices": [29, 32]}, {"text": "Wendy", "indices": [33, 39]}], "urls": [], "user_mentions": [{"screen_name": "SSWAN0221", "name": "\ud83c\udf4aSSW0221\ud83c\udf4a", "id": 4297284145, "id_str": "4297284145", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}]}, "extended_entities": {"media": [{"id": 910525727585452032, "id_str": "910525727585452032", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzeVwAAZQVL.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}, {"id": 910525727593840641, "id_str": "910525727593840641", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzgVwAEH0mN.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}, {"id": 910525727589638144, "id_str": "910525727589638144", "indices": [43, 66], "media_url": "http://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "media_url_https": "https://pbs.twimg.com/media/DKLWUzfVoAABkoh.jpg", "url": "https://t.co/yfKTq4PkZ7", "display_url": "pic.twitter.com/yfKTq4PkZ7", "expanded_url": "https://twitter.com/SSWAN0221/status/910525790378278912/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1000, "h": 1500, "resize": "fit"}}, "source_status_id": 910525790378278912, "source_status_id_str": "910525790378278912", "source_user_id": 4297284145, "source_user_id_str": "4297284145"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028604659"}
{"delete": {"status": {"id": 361621742457872384, "id_str": "361621742457872384", "user_id": 488386698, "user_id_str": "488386698"}, "timestamp_ms": "1506028605661"}}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283337216, "id_str": "910976115283337216", "text": "RT @bIackpinks: nothing but respect for MY dance line https://t.co/hvHCYfVXQ0", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 309473465, "id_str": "309473465", "name": "TNT is back", "screen_name": "WHOIS_NEXTWIN", "location": null, "url": "http://ask.fm/Cherryblossom7777", "description": "hi i love everyone :) \u2764\ufe0f \u2708\ufe0f\u2708\ufe0f", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1018, "friends_count": 915, "listed_count": 8, "favourites_count": 34280, "statuses_count": 106141, "created_at": "Thu Jun 02 04:28:53 +0000 2011", "utc_offset": -25200, "time_zone": "Arizona", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "40BDE6", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000161950525/sogmUMbO.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000161950525/sogmUMbO.jpeg", "profile_background_tile": true, "profile_link_color": "7FACE3", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "9CBABD", "profile_text_color": "7CD5D6", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/662467364034752512/5sqhjqqN_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662467364034752512/5sqhjqqN_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309473465/1397084041", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:03:23 +0000 2017", "id": 910836856178315265, "id_str": "910836856178315265", "text": "nothing but respect for MY dance line https://t.co/hvHCYfVXQ0", "display_text_range": [0, 37], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 74573787, "id_str": "74573787", "name": "nayeon day", "screen_name": "bIackpinks", "location": "m - lh\u2122", "url": "https://curiouscat.me/Ioona", "description": "\uff65\uff9f\u2727", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4373, "friends_count": 124, "listed_count": 86, "favourites_count": 17518, "statuses_count": 11730, "created_at": "Tue Sep 15 22:21:08 +0000 2009", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "A5AEAD", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/910914509316993024/GlCF21s4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910914509316993024/GlCF21s4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/74573787/1506013919", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 345, "reply_count": 18, "retweet_count": 11279, "favorite_count": 13061, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [38, 61], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [38, 61], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 11300, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/pl/kBN91HJSwAudyyrX.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/320x180/m4VwB3ET-bhMHMNj.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/640x360/52Y99VmabCir6uY3.mp4"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/1280x720/ZuAtOe5IsJ8JGqOK.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "bIackpinks", "name": "nayeon day", "id": 74573787, "id_str": "74573787", "indices": [3, 14]}], "symbols": [], "media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [54, 77], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id": 910836856178315265, "source_status_id_str": "910836856178315265", "source_user_id": 74573787, "source_user_id_str": "74573787"}]}, "extended_entities": {"media": [{"id": 910836787433689088, "id_str": "910836787433689088", "indices": [54, 77], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/910836787433689088/pu/img/42gH3zNeTeqcYvQo.jpg", "url": "https://t.co/hvHCYfVXQ0", "display_url": "pic.twitter.com/hvHCYfVXQ0", "expanded_url": "https://twitter.com/bIackpinks/status/910836856178315265/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 338, "resize": "fit"}, "small": {"w": 340, "h": 191, "resize": "fit"}, "large": {"w": 1024, "h": 576, "resize": "fit"}}, "source_status_id": 910836856178315265, "source_status_id_str": "910836856178315265", "source_user_id": 74573787, "source_user_id_str": "74573787", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 11300, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/pl/kBN91HJSwAudyyrX.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/320x180/m4VwB3ET-bhMHMNj.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/640x360/52Y99VmabCir6uY3.mp4"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/910836787433689088/pu/vid/1280x720/ZuAtOe5IsJ8JGqOK.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115279257600, "id_str": "910976115279257600", "text": "RT @moonbyulecom: 170920 #\ubb38\ubcc4 #\ub9c8\ub9c8\ubb34 #mamamoo @RBW_MAMAMOO \n\n\ud584\uae45\ud584\uae45 https://t.co/aJFtyygfZT", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 261160477, "id_str": "261160477", "name": "\ubcbc\ub9ac\uc758\ubc15\ub825", "screen_name": "byulkong2", "location": null, "url": null, "description": "\u203bRT\ub9ce\uc544\uc5ec\n#\ub9c8\ub9c8\ubb34_\ub098\ub85c\ub9d0\ud560\uac83\uac19\uc73c\uba74\n~\u2661", "translator_type": "none", "protected": false, "verified": false, "followers_count": 184, "friends_count": 397, "listed_count": 5, "favourites_count": 16346, "statuses_count": 17072, "created_at": "Sat Mar 05 11:03:22 +0000 2011", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/854287028606844928/QFMwbRDQ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/854287028606844928/QFMwbRDQ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/261160477/1492747751", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:57:17 +0000 2017", "id": 910850418237779969, "id_str": "910850418237779969", "text": "170920 #\ubb38\ubcc4 #\ub9c8\ub9c8\ubb34 #mamamoo @RBW_MAMAMOO \n\n\ud584\uae45\ud584\uae45 https://t.co/aJFtyygfZT", "display_text_range": [0, 44], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 774617626001629185, "id_str": "774617626001629185", "name": "\ubb38\ubcc4 \uad00\uce21\uc18c", "screen_name": "moonbyulecom", "location": "\u1d0d\u1d0f\u1d0f\u0274\u0299\u028f\u1d1c\u029f ~\u2661", "url": "http://moonbyule.com", "description": "\ubb38\ubcc4\uc774 \uac10\uc0c1\ud558\uc790 \ud83d\udd2d", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6491, "friends_count": 4, "listed_count": 62, "favourites_count": 21, "statuses_count": 273, "created_at": "Sat Sep 10 14:36:48 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/872807155266486277/0_QZiXtL_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/872807155266486277/0_QZiXtL_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/774617626001629185/1504702527", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 7, "reply_count": 0, "retweet_count": 439, "favorite_count": 560, "entities": {"hashtags": [{"text": "\ubb38\ubcc4", "indices": [7, 10]}, {"text": "\ub9c8\ub9c8\ubb34", "indices": [11, 15]}, {"text": "mamamoo", "indices": [16, 24]}], "urls": [], "user_mentions": [{"screen_name": "RBW_MAMAMOO", "name": "\ub9c8\ub9c8\ubb34(MAMAMOO)", "id": 2295631308, "id_str": "2295631308", "indices": [25, 37]}], "symbols": [], "media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}}, {"id": 910850318904074240, "id_str": "910850318904074240", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 910850326269386752, "id_str": "910850326269386752", "indices": [45, 68], "media_url": "http://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 1365, "resize": "fit"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\ubb38\ubcc4", "indices": [25, 28]}, {"text": "\ub9c8\ub9c8\ubb34", "indices": [29, 33]}, {"text": "mamamoo", "indices": [34, 42]}], "urls": [], "user_mentions": [{"screen_name": "moonbyulecom", "name": "\ubb38\ubcc4 \uad00\uce21\uc18c", "id": 774617626001629185, "id_str": "774617626001629185", "indices": [3, 16]}, {"screen_name": "RBW_MAMAMOO", "name": "\ub9c8\ub9c8\ubb34(MAMAMOO)", "id": 2295631308, "id_str": "2295631308", "indices": [43, 55]}], "symbols": [], "media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}, "source_status_id": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}]}, "extended_entities": {"media": [{"id": 910850318883201024, "id_str": "910850318883201024", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igSVoAAUj7o.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}}, "source_status_id": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}, {"id": 910850318904074240, "id_str": "910850318904074240", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9igXUIAAzPzR.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"small": {"w": 453, "h": 680, "resize": "fit"}, "large": {"w": 1365, "h": 2048, "resize": "fit"}, "medium": {"w": 800, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "source_status_id": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}, {"id": 910850326269386752, "id_str": "910850326269386752", "indices": [63, 86], "media_url": "http://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "media_url_https": "https://pbs.twimg.com/media/DKP9i7zV4AA9P8w.jpg", "url": "https://t.co/aJFtyygfZT", "display_url": "pic.twitter.com/aJFtyygfZT", "expanded_url": "https://twitter.com/moonbyulecom/status/910850418237779969/photo/1", "type": "photo", "sizes": {"large": {"w": 2048, "h": 1365, "resize": "fit"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 453, "resize": "fit"}}, "source_status_id": 910850418237779969, "source_status_id_str": "910850418237779969", "source_user_id": 774617626001629185, "source_user_id_str": "774617626001629185"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028605657"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115304316928, "id_str": "910976115304316928", "text": "RT @Braveymithra: 2\u670822\u65e5\u306f\u7af9\u5cf6\u306e\u65e5\u3000\n\u97d3\u56fd\u306b\u6b66\u529b\u306b\u3088\u3063\u3066\u4fb5\u7565\u3055\u308c\u5360\u62e0\u3055\u308c\u3001\n\u65e5\u672c\u4eba\u306f\u884c\u3051\u306a\u3044\u3051\u308c\u3069\u3000\u7af9\u5cf6\u306f\u65e5\u672c\u306e\u9818\u571f\u3067\u3059\u3002 https://t.co/WBXI5u7RX7", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2731018640, "id_str": "2731018640", "name": "\u300e\u30c7\u30b8\u304a\u3058\u3055\u3093\u300f#\u53cd\u65e5\u6f70\u3057\u3000#\u5acc\u7279\u4e9c\u4e09\u56fd", "screen_name": "dejiojisan", "location": null, "url": null, "description": "\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u3001\u30d5\u30a9\u30ed\u30fc\u30d0\u30c3\u30af\u3057\u306a\u3044\u4e8b\u304c\u6709\u308a\u307e\u3059\u3002\n\n\u904a\u3073\u3001\u30d3\u30b8\u30cd\u30b9\u76ee\u7684\u306f\u3001\u4e00\u5207\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u2757\n\n\u65e5\u672c\u56fd\u5927\u597d\u304d(^_^)v\n\u7279\u4e9c\u4e09\u56fd\u3001\u30d1\u30e8\u30af\u30fb\u30d0\u30ab\u30de\u30b9\u30b3\u30df\u5927\u5acc\u3044\ud83d\ude21\u26a1\n\n\u30d5\u30a9\u30ed\u30ef\u30fc\u306e\u7686\u69d8\u3078\u306e\u30ec\u30b9\u9045\u308c\u305f\u3089\u3054\u3081\u3093\u306a\u3055\u3044\ud83d\ude47\ud83d\udca6\ud83d\udca6", "translator_type": "none", "protected": false, "verified": false, "followers_count": 353, "friends_count": 330, "listed_count": 2, "favourites_count": 10793, "statuses_count": 10899, "created_at": "Thu Aug 14 05:54:25 +0000 2014", "utc_offset": 32400, "time_zone": "Seoul", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/610736936383221760/Sw1Ql9MA_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/610736936383221760/Sw1Ql9MA_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2731018640/1434446072", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:25:02 +0000 2017", "id": 910872502984785920, "id_str": "910872502984785920", "text": "2\u670822\u65e5\u306f\u7af9\u5cf6\u306e\u65e5\u3000\n\u97d3\u56fd\u306b\u6b66\u529b\u306b\u3088\u3063\u3066\u4fb5\u7565\u3055\u308c\u5360\u62e0\u3055\u308c\u3001\n\u65e5\u672c\u4eba\u306f\u884c\u3051\u306a\u3044\u3051\u308c\u3069\u3000\u7af9\u5cf6\u306f\u65e5\u672c\u306e\u9818\u571f\u3067\u3059\u3002 https://t.co/WBXI5u7RX7", "source": "<a href=\"http://autotweety.net\" rel=\"nofollow\">autotweety.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 189851428, "id_str": "189851428", "name": "\u3053\u3068\u308a\u3093", "screen_name": "Braveymithra", "location": "\u5175\u5eab\u770c", "url": null, "description": "\u6f2b\u753b\u3084\u4e59\u5973\u30b2\u30fc\u30e0\u304c\u5927\u597d\u304d\uff01\u6c38\u9060\u306b\uff12\uff10\u6b73\u306e\u4e59\u5973\u3067\u3059\u266a\u597d\u304d\u306a\u6f2b\u753b\u5bb6\u3055\u3093\u306f\u3001\u4ef2\u6751\u4f73\u6a39\u5148\u751f\uff06\u8fbb\u7530\u308a\u308a\u5b50\u5148\u751f\u3002\u597d\u304d\u306a\u30b2\u30fc\u30e0\u306f\u3001\u300c\u9065\u304b\u306a\u308b\u6642\u7a7a\u306e\u4e2d\u3067\u300d\u300c\u3068\u304d\u30e1\u30e2Girl's\u300d\u266a\u3000*^0^*\u3010\u30dc\u30c3\u30c8\u6a5f\u80fd\u3092\u5229\u7528\u3057\u3066\u3000\uff12\uff14\u6642\u9593\u3001\uff13\uff10\u5206\u3054\u3068\u306b\u3064\u3076\u3084\u3044\u3066\u304a\u308a\u307e\u3059\u3002\u30b3\u30d4\u30da\u62e1\u6563\u3001\u3054\u81ea\u7531\u306b\u3002\u7f72\u540d\u7121\u7528\u3067\u3059\u3002\u3011", "translator_type": "none", "protected": false, "verified": false, "followers_count": 19250, "friends_count": 13669, "listed_count": 244, "favourites_count": 30569, "statuses_count": 183584, "created_at": "Sun Sep 12 11:58:55 +0000 2010", "utc_offset": 32400, "time_zone": "Tokyo", "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "89C9FA", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/551323761647947776/jGFcyvYS.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/551323761647947776/jGFcyvYS.jpeg", "profile_background_tile": true, "profile_link_color": "B40B43", "profile_sidebar_border_color": "CC3366", "profile_sidebar_fill_color": "E5507E", "profile_text_color": "362720", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/910129180423086080/v8XYv8jh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/910129180423086080/v8XYv8jh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/189851428/1420281548", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 2, "favorite_count": 3, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "extended_entities": {"media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [55, 78], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Braveymithra", "name": "\u3053\u3068\u308a\u3093", "id": 189851428, "id_str": "189851428", "indices": [3, 16]}], "symbols": [], "media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "extended_entities": {"media": [{"id": 701697091278508032, "id_str": "701697091278508032", "indices": [73, 96], "media_url": "http://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "media_url_https": "https://pbs.twimg.com/media/CbztyWmUkAAigXz.jpg", "url": "https://t.co/WBXI5u7RX7", "display_url": "pic.twitter.com/WBXI5u7RX7", "expanded_url": "http://twitter.com/Braveymithra/status/701697092507439104/photo/1", "type": "photo", "sizes": {"medium": {"w": 709, "h": 567, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 709, "h": 567, "resize": "fit"}, "small": {"w": 680, "h": 544, "resize": "fit"}}, "source_status_id": 701697092507439104, "source_status_id_str": "701697092507439104", "source_user_id": 189851428, "source_user_id_str": "189851428"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028605663"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115304361984, "id_str": "910976115304361984", "text": "RT @Channel4News: .@LeoDiCaprio claims America is the \"only country in the world\" where there is an \"argument about climate change\". https:\u2026", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 903394921528287234, "id_str": "903394921528287234", "name": "Jonah Rogen", "screen_name": "RogenJonah23", "location": "California, USA", "url": "http://wereallimmigrants.com", "description": "Be kind.Be yourself. Smile even through hard times. Treat eachother equally. Recycle. Stand up for what you believe in. Grow. & Go travel the world \ud83c\udf3b\ud83e\udd8b\ud83d\udd49\u2640\ufe0f\u2642\ufe0f\u262e\u269b", "translator_type": "none", "protected": false, "verified": false, "followers_count": 61, "friends_count": 231, "listed_count": 0, "favourites_count": 1342, "statuses_count": 772, "created_at": "Thu Aug 31 23:11:48 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/904515815134838786/ydtzihEI_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/904515815134838786/ydtzihEI_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/903394921528287234/1504481980", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Wed Sep 20 11:18:16 +0000 2017", "id": 910463112414973952, "id_str": "910463112414973952", "text": ".@LeoDiCaprio claims America is the \"only country in the world\" where there is an \"argument about climate change\". https://t.co/0xAiDAkmQd", "display_text_range": [0, 114], "source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Media Studio</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 14569869, "id_str": "14569869", "name": "Channel 4 News", "screen_name": "Channel4News", "location": null, "url": "http://www.channel4.com/news", "description": "Stories that reveal and inspire, challenging expectations.", "translator_type": "none", "protected": false, "verified": true, "followers_count": 1773552, "friends_count": 4587, "listed_count": 8677, "favourites_count": 457, "statuses_count": 85496, "created_at": "Mon Apr 28 14:29:37 +0000 2008", "utc_offset": 3600, "time_zone": "London", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "2C1C36", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/648955077240164352/qBTtGdoJ.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/648955077240164352/qBTtGdoJ.png", "profile_background_tile": false, "profile_link_color": "421174", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FAF0F6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/875404558528393216/cTknVhwm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/875404558528393216/cTknVhwm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14569869/1464103587", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 58, "reply_count": 97, "retweet_count": 396, "favorite_count": 719, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "LeoDiCaprio", "name": "Leonardo DiCaprio", "id": 133880286, "id_str": "133880286", "indices": [1, 13]}], "symbols": [], "media": [{"id": 910462490718457856, "id_str": "910462490718457856", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "media_url_https": "https://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "url": "https://t.co/0xAiDAkmQd", "display_url": "pic.twitter.com/0xAiDAkmQd", "expanded_url": "https://twitter.com/Channel4News/status/910463112414973952/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}, "medium": {"w": 720, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910462490718457856, "id_str": "910462490718457856", "indices": [115, 138], "media_url": "http://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "media_url_https": "https://pbs.twimg.com/media/DKKdWPFW4AA5nzl.jpg", "url": "https://t.co/0xAiDAkmQd", "display_url": "pic.twitter.com/0xAiDAkmQd", "expanded_url": "https://twitter.com/Channel4News/status/910463112414973952/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}, "medium": {"w": 720, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [1, 1], "duration_millis": 65440, "variants": [{"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/910462490718457856/vid/720x720/tPNWxj-So6-2VH5F.mp4"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/amplify_video/910462490718457856/pl/-RLMEGJrXA77Fito.m3u8"}, {"bitrate": 320000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/910462490718457856/vid/240x240/J8vVIkJwdxW6W25b.mp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/910462490718457856/vid/480x480/2qnupCyDRkJHXQvT.mp4"}]}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "Channel4News", "name": "Channel 4 News", "id": 14569869, "id_str": "14569869", "indices": [3, 16]}, {"screen_name": "LeoDiCaprio", "name": "Leonardo DiCaprio", "id": 133880286, "id_str": "133880286", "indices": [19, 31]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605663"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283443712, "id_str": "910976115283443712", "text": "RT @ulinyusron: Pilu kelu \ud83d\ude2d https://t.co/z5ryMM6kWV", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 74112590, "id_str": "74112590", "name": "OmenShinchan", "screen_name": "Oomenchan", "location": null, "url": null, "description": "Pahlawan Bertopeng Hahahaha", "translator_type": "none", "protected": false, "verified": false, "followers_count": 304, "friends_count": 32, "listed_count": 4, "favourites_count": 756, "statuses_count": 20941, "created_at": "Mon Sep 14 08:51:09 +0000 2009", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FF0033", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000153270636/J6NGOGPg.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000153270636/J6NGOGPg.jpeg", "profile_background_tile": true, "profile_link_color": "F58EA8", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "F6FFD1", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/868863810702004224/uPfigTvh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/868863810702004224/uPfigTvh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/74112590/1495988228", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 12:53:22 +0000 2017", "id": 910849433280978944, "id_str": "910849433280978944", "text": "Pilu kelu \ud83d\ude2d https://t.co/z5ryMM6kWV", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 49889849, "id_str": "49889849", "name": "Ulin Yusron", "screen_name": "ulinyusron", "location": "Enam indera", "url": "http://ulinyusron.blogspot.com", "description": "Pemburu senja. Pencuri malam. Penculik fajar. Pengempas terik. Pencari pelangi. IG: @ulinyusron #MelawanLupa #Bunga #Sajak140 [Apa adanya itu luar biasa]", "translator_type": "none", "protected": false, "verified": true, "followers_count": 104136, "friends_count": 979, "listed_count": 252, "favourites_count": 415, "statuses_count": 89912, "created_at": "Tue Jun 23 04:57:48 +0000 2009", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/87144878/kriwil.jpg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/87144878/kriwil.jpg", "profile_background_tile": false, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/731528849402400768/9MwyziXe_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731528849402400768/9MwyziXe_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/49889849/1380387195", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 4, "reply_count": 3, "retweet_count": 15, "favorite_count": 10, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z5ryMM6kWV", "expanded_url": "https://news.detik.com/read/2017/09/21/152936/3652793/10/kisah-tragis-ibu-gendong-bayinya-yang-baru-meninggal-dengan-angkot", "display_url": "news.detik.com/read/2017/09/2\u2026", "indices": [12, 35]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/z5ryMM6kWV", "expanded_url": "https://news.detik.com/read/2017/09/21/152936/3652793/10/kisah-tragis-ibu-gendong-bayinya-yang-baru-meninggal-dengan-angkot", "display_url": "news.detik.com/read/2017/09/2\u2026", "indices": [28, 51]}], "user_mentions": [{"screen_name": "ulinyusron", "name": "Ulin Yusron", "id": 49889849, "id_str": "49889849", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "in", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312750592, "id_str": "910976115312750592", "text": "RT @BTS_twt: \ud83e\udd18 \ub0b4\uc77c\ubd10\uc694 \ud83d\ude18 https://t.co/icCZZ7Q9Ys", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 856548396911345664, "id_str": "856548396911345664", "name": "\uc11c \uc724", "screen_name": "m_kook_min", "location": "\uff0b\uff18\uff11\uff1a\uff10\uff11army", "url": null, "description": "\u514e\u30ca\u30f3\u30d0\uff11\u3067\u3059\u3002\uff08\uff1a\u9577\u7537\u3068\u96db\u3082\u63a8\u3057\u3066\u307e\u3059\u3002", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2, "friends_count": 64, "listed_count": 1, "favourites_count": 1294, "statuses_count": 1250, "created_at": "Mon Apr 24 16:40:26 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/896746771812040705/O5FJtW-G_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/896746771812040705/O5FJtW-G_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/856548396911345664/1501418153", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:43:44 +0000 2017", "id": 910877209757310976, "id_str": "910877209757310976", "text": "\ud83e\udd18 \ub0b4\uc77c\ubd10\uc694 \ud83d\ude18 https://t.co/icCZZ7Q9Ys", "display_text_range": [0, 8], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 335141638, "id_str": "335141638", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "screen_name": "BTS_twt", "location": null, "url": "http://btsblog.ibighit.com", "description": "Hi~ we are BTS!", "translator_type": "regular", "protected": false, "verified": true, "followers_count": 8462886, "friends_count": 98, "listed_count": 19367, "favourites_count": 60, "statuses_count": 10126, "created_at": "Thu Jul 14 06:32:56 +0000 2011", "utc_offset": 28800, "time_zone": "Irkutsk", "geo_enabled": true, "lang": "ko", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_link_color": "FF0000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/905808134727286784/nn7m8q1p_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/335141638/1504796451", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 13090, "reply_count": 28576, "retweet_count": 148242, "favorite_count": 317283, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}, {"id": 910877193554628608, "id_str": "910877193554628608", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}}}, {"id": 910877193571418112, "id_str": "910877193571418112", "indices": [9, 32], "media_url": "http://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "BTS_twt", "name": "\ubc29\ud0c4\uc18c\ub144\ub2e8", "id": 335141638, "id_str": "335141638", "indices": [3, 11]}], "symbols": [], "media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "extended_entities": {"media": [{"id": 910877193571508225, "id_str": "910877193571508225", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TVoAEJNTG.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"large": {"w": 1536, "h": 2048, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}, {"id": 910877193554628608, "id_str": "910877193554628608", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0PUEAAE-RE.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 510, "resize": "fit"}, "medium": {"w": 1200, "h": 900, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1536, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}, {"id": 910877193571418112, "id_str": "910877193571418112", "indices": [22, 45], "media_url": "http://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQV-0TUQAA8pTS.jpg", "url": "https://t.co/icCZZ7Q9Ys", "display_url": "pic.twitter.com/icCZZ7Q9Ys", "expanded_url": "https://twitter.com/BTS_twt/status/910877209757310976/photo/1", "type": "photo", "sizes": {"medium": {"w": 900, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}}, "source_status_id": 910877209757310976, "source_status_id_str": "910877209757310976", "source_user_id": 335141638, "source_user_id_str": "335141638"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "ko", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115317067777, "id_str": "910976115317067777", "text": "3-4 This is the safe, responsible, and humanitarian approach.", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3023125087, "id_str": "3023125087", "name": "Georges-michel", "screen_name": "GmJamra", "location": "Greenville, SC, USA", "url": null, "description": "dum spiro spero", "translator_type": "none", "protected": false, "verified": false, "followers_count": 6, "friends_count": 35, "listed_count": 0, "favourites_count": 383, "statuses_count": 338, "created_at": "Tue Feb 17 00:47:00 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/906194484421152769/6JwOxvxT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/906194484421152769/6JwOxvxT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3023125087/1504888553", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605666"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312693248, "id_str": "910976115312693248", "text": "RT @lina1616m: #\u304a\u3084\u3059\u307f\u306a\u3055\u3044 \ud83c\udf19\ud83d\udc30\ud83d\udc95 https://t.co/JhaPOZSkyH", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 784979849991467008, "id_str": "784979849991467008", "name": "\u304a\u304b\u3074\u3087\u3093", "screen_name": "hcikNXh5xeUEgRV", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 103, "friends_count": 152, "listed_count": 0, "favourites_count": 9939, "statuses_count": 5228, "created_at": "Sun Oct 09 04:52:35 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/861084743504338946/x5OU82UF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/861084743504338946/x5OU82UF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/784979849991467008/1492310461", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 14:41:42 +0000 2017", "id": 910876695623643139, "id_str": "910876695623643139", "text": "#\u304a\u3084\u3059\u307f\u306a\u3055\u3044 \ud83c\udf19\ud83d\udc30\ud83d\udc95 https://t.co/JhaPOZSkyH", "display_text_range": [0, 12], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 735119217184243712, "id_str": "735119217184243712", "name": "\u5317\u6797 \u5229\u5948 \ud83c\udf6d Candycoco", "screen_name": "lina1616m", "location": "team \u304d\u305f\u308a\u306a", "url": "http://hybridbank.net", "description": "HYBRID BANK\u6240\u5c5e\u2665( @Candycoco0328 )\u30e1\u30f3\u30d0\u30fc\u2665\u5e73\u621028\u5e74\u5ea6\u5929\u795e\u5929\u6e80\u82b1\u5a18\u2665\u304d\u3085\u3093\u30c9\u30e9 65\u8a71\u4e3b\u6f14\u2665\u30af\u30ed\u30b9\u30b0\u30eb\u30fc\u30d7\u30a4\u30e1\u30fc\u30b8\u30ac\u30fc\u30eb\u2665\u30a2\u30df\u30b9\u30bf\u64ae\u5f71\u4f1a\u2665\u30c6\u30ec\u30d3\uff62\u30d3\u30fc\u30d0\u30c3\u30d7\uff01\u30cf\u30a4\u30d2\u30fc\u30eb\uff63\u2665TV\u30b7\u30e7\u30c3\u30d4\u30f3\u30b0\u51fa\u6f14\u2665\u30dd\u30c3\u30d7\u30ea\u30fc\u30c9\u8868\u7d19\u2665\u30a2\u30b8\u30a2\u30ac\u30fc\u30eb\u30ba\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u51fa\u6f14\u2665\u30a8\u30cb\u30b7\u30e2\u64ae\u5f71\u4f1a\u2665\u7f8e\u30de\u30fc\u30b8\u30e5\u64ae\u5f71\u4f1a", "translator_type": "none", "protected": false, "verified": false, "followers_count": 4051, "friends_count": 4510, "listed_count": 18, "favourites_count": 28736, "statuses_count": 2871, "created_at": "Tue May 24 14:44:14 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/900995125555351552/owi6dV-N_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/900995125555351552/owi6dV-N_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/735119217184243712/1490336112", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 11, "retweet_count": 1, "favorite_count": 22, "entities": {"hashtags": [{"text": "\u304a\u3084\u3059\u307f\u306a\u3055\u3044", "indices": [0, 8]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [13, 36], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "\u304a\u3084\u3059\u307f\u306a\u3055\u3044", "indices": [15, 23]}], "urls": [], "user_mentions": [{"screen_name": "lina1616m", "name": "\u5317\u6797 \u5229\u5948 \ud83c\udf6d Candycoco", "id": 735119217184243712, "id_str": "735119217184243712", "indices": [3, 13]}], "symbols": [], "media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}, "source_status_id": 910876695623643139, "source_status_id_str": "910876695623643139", "source_user_id": 735119217184243712, "source_user_id_str": "735119217184243712"}]}, "extended_entities": {"media": [{"id": 910876687176306700, "id_str": "910876687176306700", "indices": [28, 51], "media_url": "http://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "media_url_https": "https://pbs.twimg.com/media/DKQVhV1UEAw54bY.jpg", "url": "https://t.co/JhaPOZSkyH", "display_url": "pic.twitter.com/JhaPOZSkyH", "expanded_url": "https://twitter.com/lina1616m/status/910876695623643139/photo/1", "type": "photo", "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1471, "h": 827, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}, "source_status_id": 910876695623643139, "source_status_id_str": "910876695623643139", "source_user_id": 735119217184243712, "source_user_id_str": "735119217184243712"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283333120, "id_str": "910976115283333120", "text": "https://t.co/mCmhhWqp\u25a0\u304a\u3082\u3057\u308d\u30b5\u30c3\u30ab\u30fcSEO\uff01 https://t.co/6nU4nnwh5V ##football #soccer #\u30b5\u30c3\u30ab\u30fc #\u30d5\u30c3\u30c8\u30dc\u30fc\u30eb", "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 596259174, "id_str": "596259174", "name": "omoshiro_socce1", "screen_name": "omoshiro_socce1", "location": null, "url": "http://ameblo.jp/arzentin/", "description": "\u304a\u3082\u3057\u308d\u3044\u30b5\u30c3\u30ab\u30fc\u306e\u30cb\u30e5\u30fc\u30b9\u30fb\u52d5\u753b\u30fb\u60c5\u5831\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\r\n\u3010\u30d6\u30ed\u30b0\u3011\u304a\u3082\u3057\u308d\u30b5\u30c3\u30ab\u30fcSEO\uff01\r\nhttp://ameblo.jp/arzentin/", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1147, "friends_count": 2543, "listed_count": 110, "favourites_count": 0, "statuses_count": 86918, "created_at": "Fri Jun 01 06:14:14 +0000 2012", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/829901064015011841/OcIhmXEo_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/829901064015011841/OcIhmXEo_normal.jpg", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "football", "indices": [60, 69]}, {"text": "soccer", "indices": [70, 77]}, {"text": "\u30b5\u30c3\u30ab\u30fc", "indices": [78, 83]}, {"text": "\u30d5\u30c3\u30c8\u30dc\u30fc\u30eb", "indices": [84, 91]}], "urls": [{"url": "https://t.co/6nU4nnwh5V", "expanded_url": "http://ameblo.jp/arzentin/", "display_url": "ameblo.jp/arzentin/", "indices": [35, 58]}], "user_mentions": [], "symbols": [], "media": [{"id": 263105329473130496, "id_str": "263105329473130496", "indices": [0, 21], "media_url": "http://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "media_url_https": "https://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "url": "https://t.co/mCmhhWqp", "display_url": "pic.twitter.com/mCmhhWqp", "expanded_url": "http://twitter.com/omoshiro_socce1/status/263105329468936192/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 640, "resize": "fit"}, "large": {"w": 480, "h": 640, "resize": "fit"}, "small": {"w": 480, "h": 640, "resize": "fit"}}, "source_status_id": 263105329468936192, "source_status_id_str": "263105329468936192", "source_user_id": 596259174, "source_user_id_str": "596259174"}]}, "extended_entities": {"media": [{"id": 263105329473130496, "id_str": "263105329473130496", "indices": [0, 21], "media_url": "http://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "media_url_https": "https://pbs.twimg.com/media/A6a85zXCEAAj454.jpg", "url": "https://t.co/mCmhhWqp", "display_url": "pic.twitter.com/mCmhhWqp", "expanded_url": "http://twitter.com/omoshiro_socce1/status/263105329468936192/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 640, "resize": "fit"}, "large": {"w": 480, "h": 640, "resize": "fit"}, "small": {"w": 480, "h": 640, "resize": "fit"}}, "source_status_id": 263105329468936192, "source_status_id_str": "263105329468936192", "source_user_id": 596259174, "source_user_id_str": "596259174"}]}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "und", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115279323148, "id_str": "910976115279323148", "text": "@MdinzzHammer \u0645\u0627 \u062f\u0644\u064a\u0643 \u0627\u0646\u062a \u0627\u0646 \u0647\u0630\u0627 \u0644\u0646 \u064a\u062d\u0635\u0644", "display_text_range": [14, 40], "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": 910975753562591234, "in_reply_to_status_id_str": "910975753562591234", "in_reply_to_user_id": 778603320252440576, "in_reply_to_user_id_str": "778603320252440576", "in_reply_to_screen_name": "MdinzzHammer", "user": {"id": 893649853556961280, "id_str": "893649853556961280", "name": "\u0640\u0623\u0646\u0640\u0640\u0640\u0648\u0631 \u0627\u0644\u0640\u0640 \u0635\u0640\u0627\u0626\u0640\u063a", "screen_name": "SaiqhAl", "location": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", "url": null, "description": "\u0623\u062b\u0642\u0644 \u0645\u0648\u0627\u0632\u064a\u0646 \u2696 \u0627\u0644\u0639\u0631\u0628 \u062d\u0643\u0645\u0629 ,\u0627\u0644\u0635\u0645\u062a", "translator_type": "none", "protected": false, "verified": false, "followers_count": 65, "friends_count": 188, "listed_count": 0, "favourites_count": 936, "statuses_count": 1137, "created_at": "Sat Aug 05 01:48:23 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ar", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907341365792661505/H1wlmsB3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907341365792661505/H1wlmsB3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/893649853556961280/1503441852", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "MdinzzHammer", "name": "\u0627\u0644\u062d\u064a\u0627\u0629 \u062a\u0641\u0627\u0624\u0644", "id": 778603320252440576, "id_str": "778603320252440576", "indices": [0, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ar", "timestamp_ms": "1506028605657"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115296161799, "id_str": "910976115296161799", "text": "Bunda da camila \ud83d\ude08", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4882988475, "id_str": "4882988475", "name": "+Paula soares pessan", "screen_name": "pauletebenjamim", "location": "Maca\u00e9, Brasil", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 662, "friends_count": 778, "listed_count": 4, "favourites_count": 55738, "statuses_count": 57180, "created_at": "Sat Feb 06 21:13:46 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/899475893101506560/p5IXypra_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/899475893101506560/p5IXypra_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4882988475/1500483068", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028605661"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115316989954, "id_str": "910976115316989954", "text": "\u30d4\u30a2\u30b9\u8907\u6570\u3042\u3051\u3066\u304b\u3089\u3044\u304d\u306a\u308a\u8033\u3092\u660e\u3089\u304b\u306b\u610f\u56f3\u3057\u3066\u3046\u3064\u3057\u3060\u3059\u81ea\u79f0\u534d\u304cTL\u306b\u73fe\u308c\u305f\u304b", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 886549510909943808, "id_str": "886549510909943808", "name": "\ud83c\udf05", "screen_name": "AsaHi_hINan", "location": "\u3053\u3053\u306b\u5f7c\u5973\u306e\u540d\u524d\u66f8\u304f\u3093\u3060\u308d\uff1f\u6c0f\u306d", "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 44, "friends_count": 19, "listed_count": 1, "favourites_count": 9142, "statuses_count": 2028, "created_at": "Sun Jul 16 11:34:09 +0000 2017", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "ja", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907672449314992128/A5CaGJfC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907672449314992128/A5CaGJfC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/886549510909943808/1502166688", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "ja", "timestamp_ms": "1506028605666"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115317100545, "id_str": "910976115317100545", "text": "I liked a @YouTube video https://t.co/ypftvWnPkL Dear YouTube, you're killing me (wasn't going to post this..)", "source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1902317840, "id_str": "1902317840", "name": "Larry Holiday", "screen_name": "AwesomePanda223", "location": "Houston, TX", "url": null, "description": "Living in a single life. Play Video Games, Going to concerts and Ride longboard. love to Watch YouTube every single day \ud83d\udc80\ud83d\ude0e", "translator_type": "none", "protected": false, "verified": false, "followers_count": 600, "friends_count": 2052, "listed_count": 1, "favourites_count": 2288, "statuses_count": 2615, "created_at": "Wed Sep 25 00:45:26 +0000 2013", "utc_offset": null, "time_zone": null, "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/845898813776769026/wjYQrMZL_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/845898813776769026/wjYQrMZL_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1902317840/1468561555", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/ypftvWnPkL", "expanded_url": "http://youtu.be/54zHdmArtPA?a", "display_url": "youtu.be/54zHdmArtPA?a", "indices": [25, 48]}], "user_mentions": [{"screen_name": "YouTube", "name": "YouTube", "id": 10228272, "id_str": "10228272", "indices": [10, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605666"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115283578880, "id_str": "910976115283578880", "text": "RT @MamieSarko: Arrestation d'un gang de cambrioleurs roumains qui \u00e9cumait la France enti\u00e8re https://t.co/mUlffvicCC", "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 493425739, "id_str": "493425739", "name": "Natalie", "screen_name": "nathchouchou", "location": null, "url": null, "description": "#MerciNS                                                                     Si au d\u00e9but tu ne r\u00e9ussis pas, ris jusqu'\u00e0 ce que tu le fasses.......", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2062, "friends_count": 2654, "listed_count": 59, "favourites_count": 1033, "statuses_count": 27894, "created_at": "Wed Feb 15 19:52:19 +0000 2012", "utc_offset": 7200, "time_zone": "Paris", "geo_enabled": true, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/3564455930/0247de8f26d6057babac49f58c686946_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3564455930/0247de8f26d6057babac49f58c686946_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/493425739/1362346023", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 17:18:02 +0000 2017", "id": 910916041315946496, "id_str": "910916041315946496", "text": "Arrestation d'un gang de cambrioleurs roumains qui \u00e9cumait la France enti\u00e8re https://t.co/mUlffvicCC", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2185059702, "id_str": "2185059702", "name": "Mamie Droite LR \u2721", "screen_name": "MamieSarko", "location": null, "url": null, "description": "R\u00e9solument de Droite d\u00e9complex\u00e9e,j'ai soutenu Sarko puis Fillon  mais suis d\u00e9\u00e7ue par leur appel en faveur de Macron. Lib\u00e9rale, ath\u00e9e. Je combats l'antis\u00e9mitisme", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2349, "friends_count": 1136, "listed_count": 85, "favourites_count": 13109, "statuses_count": 37669, "created_at": "Sat Nov 09 21:17:24 +0000 2013", "utc_offset": 7200, "time_zone": "Amsterdam", "geo_enabled": false, "lang": "fr", "contributors_enabled": false, "is_translator": false, "profile_background_color": "0099B9", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": false, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "5ED4DC", "profile_sidebar_fill_color": "95E8EC", "profile_text_color": "3C3940", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000717804150/d7a73fb0f8ebc38d163de0f37a444fa1_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000717804150/d7a73fb0f8ebc38d163de0f37a444fa1_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2185059702/1493737041", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 2, "favorite_count": 1, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/mUlffvicCC", "expanded_url": "http://www.midilibre.fr//2017/09/21/arrestation-d-un-gang-de-cambrioleurs-roumains-qui-ecumait-la-france-entiere,1564231.php", "display_url": "midilibre.fr//2017/09/21/ar\u2026", "indices": [77, 100]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/mUlffvicCC", "expanded_url": "http://www.midilibre.fr//2017/09/21/arrestation-d-un-gang-de-cambrioleurs-roumains-qui-ecumait-la-france-entiere,1564231.php", "display_url": "midilibre.fr//2017/09/21/ar\u2026", "indices": [93, 116]}], "user_mentions": [{"screen_name": "MamieSarko", "name": "Mamie Droite LR \u2721", "id": 2185059702, "id_str": "2185059702", "indices": [3, 14]}], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "fr", "timestamp_ms": "1506028605658"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312877568, "id_str": "910976115312877568", "text": "RT @cartolafc: Grohe; Ed\u00edlson/L.Moura, Bressan/Geromel, Kannemann e Cortez; Michel, Cristian/Arthur, Ramiro/Arroyo -&gt; ataque no pr\u00f3ximo twe\u2026", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 774320841454682113, "id_str": "774320841454682113", "name": "Jonah White", "screen_name": "JonahWhite30", "location": "Brasil", "url": null, "description": "Escritor, Cartoleiro e torcedor do maior time do sul, o @Gremio! \n\ud83d\ude0e\ud83c\udfa9\ud83d\udc4c", "translator_type": "none", "protected": false, "verified": false, "followers_count": 50, "friends_count": 20, "listed_count": 2, "favourites_count": 9988, "statuses_count": 11469, "created_at": "Fri Sep 09 18:57:29 +0000 2016", "utc_offset": -25200, "time_zone": "Pacific Time (US & Canada)", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "000000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/811114327788949504/UuuaqLBv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/811114327788949504/UuuaqLBv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/774320841454682113/1482220854", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 21:02:44 +0000 2017", "id": 910972585931939840, "id_str": "910972585931939840", "text": "Grohe; Ed\u00edlson/L.Moura, Bressan/Geromel, Kannemann e Cortez; Michel, Cristian/Arthur, Ramiro/Arroyo -&gt; ataque no pr\u00f3ximo tweet", "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 10075202, "id_str": "10075202", "name": "Cartola FC", "screen_name": "cartolafc", "location": "Brazil", "url": "http://www.cartolafc.com.br", "description": "Twitter do Fantasy Game Oficial do Campeonato Brasileiro", "translator_type": "none", "protected": false, "verified": true, "followers_count": 415061, "friends_count": 261, "listed_count": 1413, "favourites_count": 387, "statuses_count": 8981, "created_at": "Thu Nov 08 19:00:48 +0000 2007", "utc_offset": -10800, "time_zone": "Brasilia", "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451754467235336192/yKSlZch1.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451754467235336192/yKSlZch1.jpeg", "profile_background_tile": false, "profile_link_color": "FA743E", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "8C8C8C", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/863871091885973506/hZPSBFPy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/863871091885973506/hZPSBFPy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/10075202/1494797690", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 3, "retweet_count": 3, "favorite_count": 41, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "cartolafc", "name": "Cartola FC", "id": 10075202, "id_str": "10075202", "indices": [3, 13]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115312857088, "id_str": "910976115312857088", "text": "\u0418\u0434\u0438\u043e\u0442\u0438\u0442\u0435 \u043d\u0430 \u0421\u0438\u0442\u0435\u043b \u0441\u0435\u043a\u043e\u0458 \u0434\u0435\u043d \u0441\u0435 \u0437\u0430\u043a\u0430\u043d\u0443\u0432\u0430\u0430\u0442 \u0441\u043e \u0431\u043e\u043b\u0435\u0441\u0442\u0438 \u0432\u043e \u0432\u0435\u0441\u0442\u0438\u0442\u0435", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 176713401, "id_str": "176713401", "name": "\u0421\u043b\u0430\u0442\u043a\u0430\u0440 \u0411\u0430\u0432\u0447\u043e\u0432", "screen_name": "ABavcov", "location": null, "url": null, "description": null, "translator_type": "none", "protected": false, "verified": false, "followers_count": 3096, "friends_count": 975, "listed_count": 37, "favourites_count": 25001, "statuses_count": 58084, "created_at": "Tue Aug 10 06:58:41 +0000 2010", "utc_offset": 7200, "time_zone": "Skopje", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/874258830/3f4db122fd8f3cfe6be2c1003aa30d41.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/874258830/3f4db122fd8f3cfe6be2c1003aa30d41.jpeg", "profile_background_tile": false, "profile_link_color": "2544C2", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "060A00", "profile_text_color": "618238", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/889232574110982144/W3cTv1-z_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/889232574110982144/W3cTv1-z_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/176713401/1394104131", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "bg", "timestamp_ms": "1506028605665"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115300356096, "id_str": "910976115300356096", "text": "RT @DPresidencia: #EnDesarrollo|| @NestorRevero: Las armas destruidas pasan a ser material de construcci\u00f3n en la #GMV\u2026 ", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 138117720, "id_str": "138117720", "name": "Jose D \u262d PSUV", "screen_name": "ElChe1985Psuv", "location": "Venezuela", "url": "http://CHAVISTARADICAL.COM", "description": "MI PRIMER PARTIDO MVR200 REVOLUCIONARIO CHAVISTA CON MADURO FFM MI VIDA POR LA PATRIA Y LA REVOLUCIONA Y LA NECESIDAD DE DEFENDER CUIDAR LA PATRIA LA REVOLUCI\u00d3N", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2232, "friends_count": 4295, "listed_count": 6, "favourites_count": 3058, "statuses_count": 199965, "created_at": "Wed Apr 28 17:29:55 +0000 2010", "utc_offset": -14400, "time_zone": "Caracas", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F50A0A", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/601902948/quktih3et0hmg1e0iivz.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/601902948/quktih3et0hmg1e0iivz.jpeg", "profile_background_tile": true, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/893856370126147584/QggtYUmF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/893856370126147584/QggtYUmF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/138117720/1501944460", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 18:59:29 +0000 2017", "id": 910941570077257734, "id_str": "910941570077257734", "text": "#EnDesarrollo|| @NestorRevero: Las armas destruidas pasan a ser material de construcci\u00f3n en la #GMV\u2026 https://t.co/JPccpxthAr", "display_text_range": [0, 140], "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Lite</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2344032998, "id_str": "2344032998", "name": "Despacho Presidencia", "screen_name": "DPresidencia", "location": "Caracas-Venezuela", "url": "http://www.presidencia.gob.ve", "description": "Ministerio del Poder Popular del Despacho de la Presidencia y Seguimiento de la Gesti\u00f3n de Gobierno. Palacio de Miraflores. Ministro: MG.Carlos Osorio", "translator_type": "none", "protected": false, "verified": false, "followers_count": 228014, "friends_count": 564, "listed_count": 466, "favourites_count": 4370, "statuses_count": 68152, "created_at": "Fri Feb 14 19:44:43 +0000 2014", "utc_offset": -10800, "time_zone": "Santiago", "geo_enabled": true, "lang": "es", "contributors_enabled": false, "is_translator": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/598547151052898305/Eosf9iKQ.png", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/598547151052898305/Eosf9iKQ.png", "profile_background_tile": true, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/756286863535706113/nAWOCIIW_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/756286863535706113/nAWOCIIW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2344032998/1484855926", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "#EnDesarrollo|| @NestorRevero: Las armas destruidas pasan a ser material de construcci\u00f3n en la #GMV #VenezuelaDefiendeLaPaz https://t.co/yITppoRHkV", "display_text_range": [0, 123], "entities": {"hashtags": [{"text": "EnDesarrollo", "indices": [0, 13]}, {"text": "GMV", "indices": [95, 99]}, {"text": "VenezuelaDefiendeLaPaz", "indices": [100, 123]}], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910941563815112705, "id_str": "910941563815112705", "indices": [124, 147], "media_url": "http://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "url": "https://t.co/yITppoRHkV", "display_url": "pic.twitter.com/yITppoRHkV", "expanded_url": "https://twitter.com/DPresidencia/status/910941570077257734/photo/1", "type": "photo", "sizes": {"medium": {"w": 680, "h": 408, "resize": "fit"}, "small": {"w": 680, "h": 408, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 680, "h": 408, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910941563815112705, "id_str": "910941563815112705", "indices": [124, 147], "media_url": "http://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRQhqJWsAEbW7p.jpg", "url": "https://t.co/yITppoRHkV", "display_url": "pic.twitter.com/yITppoRHkV", "expanded_url": "https://twitter.com/DPresidencia/status/910941570077257734/photo/1", "type": "photo", "sizes": {"medium": {"w": 680, "h": 408, "resize": "fit"}, "small": {"w": 680, "h": 408, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 680, "h": 408, "resize": "fit"}}}]}}, "quote_count": 1, "reply_count": 0, "retweet_count": 16, "favorite_count": 7, "entities": {"hashtags": [{"text": "EnDesarrollo", "indices": [0, 13]}, {"text": "GMV", "indices": [95, 99]}], "urls": [{"url": "https://t.co/JPccpxthAr", "expanded_url": "https://twitter.com/i/web/status/910941570077257734", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [101, 124]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "es"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [{"text": "EnDesarrollo", "indices": [18, 31]}], "urls": [], "user_mentions": [{"screen_name": "DPresidencia", "name": "Despacho Presidencia", "id": 2344032998, "id_str": "2344032998", "indices": [3, 16]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "es", "timestamp_ms": "1506028605662"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115287699457, "id_str": "910976115287699457", "text": "S\u00f3 q t\u00f4 pensando em voltar dnv . Aqui eu fico muito sozinha", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3234365634, "id_str": "3234365634", "name": "Magrinha \u2764 #STVP04", "screen_name": "maaiiaraLooca", "location": "na puta que pariu", "url": null, "description": "PROMOTER \u2764\ud83c\udf7b\n   Lara \ud83d\udc96 Eduardo Eterno \ud83d\udc7c Rafael Eterno \ud83d\udc7c Phelipe \ud83d\udc96 Maria Victoria minha Anja \ud83d\udc7c  \u2764\ufe0f Ana Caroline \u2764", "translator_type": "none", "protected": false, "verified": false, "followers_count": 2471, "friends_count": 1934, "listed_count": 6, "favourites_count": 24773, "statuses_count": 49529, "created_at": "Wed Jun 03 00:22:31 +0000 2015", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "profile_image_url": "http://pbs.twimg.com/profile_images/908593594788966400/ylovhubv_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908593594788966400/ylovhubv_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3234365634/1503522198", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028605659"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115287707648, "id_str": "910976115287707648", "text": "To vendo que vou me dar super mal nessa prova amanh\u00e3 \ud83d\ude25", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4878419775, "id_str": "4878419775", "name": "Karen Ketley", "screen_name": "KarenKetley2", "location": "Brasil", "url": null, "description": "' Por onde for, flores\u00e7a \ud83c\udf38\u2764\ud83d\udcad '", "translator_type": "none", "protected": false, "verified": false, "followers_count": 91, "friends_count": 366, "listed_count": 0, "favourites_count": 1424, "statuses_count": 141, "created_at": "Fri Feb 05 19:01:25 +0000 2016", "utc_offset": null, "time_zone": null, "geo_enabled": false, "lang": "pt", "contributors_enabled": false, "is_translator": false, "profile_background_color": "F5F8FA", "profile_background_image_url": "", "profile_background_image_url_https": "", "profile_background_tile": false, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/902630314383515648/ero5rdMq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/902630314383515648/ero5rdMq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4878419775/1500728923", "default_profile": true, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "pt", "timestamp_ms": "1506028605659"}
{"created_at": "Thu Sep 21 21:16:45 +0000 2017", "id": 910976115308679168, "id_str": "910976115308679168", "text": "RT @jason_howerton: US Amb. to UN Nikki Haley claims world leaders appreciated how blunt and straightforward he was in that fiery UN sp\u2026 ", "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "truncated": false, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 52441523, "id_str": "52441523", "name": "Renee Thornton", "screen_name": "rendcc", "location": "Missouri", "url": null, "description": "Wife, mother, christian & conservative: SPN, Jensen&Danneel, Dominion, mma fan,books, movies, music of all genres. Reagan fav president; \u2661 vets!", "translator_type": "none", "protected": false, "verified": false, "followers_count": 1832, "friends_count": 2489, "listed_count": 160, "favourites_count": 83404, "statuses_count": 109294, "created_at": "Tue Jun 30 16:30:30 +0000 2009", "utc_offset": -18000, "time_zone": "Central Time (US & Canada)", "geo_enabled": true, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_link_color": "043547", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/749005140858925056/Ny1OyaVg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/749005140858925056/Ny1OyaVg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/52441523/1457544689", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Thu Sep 21 20:39:34 +0000 2017", "id": 910966757917102080, "id_str": "910966757917102080", "text": "US Amb. to UN Nikki Haley claims world leaders appreciated how blunt and straightforward he was in that fiery UN sp\u2026 https://t.co/0JBtkKhQXk", "display_text_range": [0, 140], "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>", "truncated": true, "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 152145921, "id_str": "152145921", "name": "Jason Howerton", "screen_name": "jason_howerton", "location": "Dallas, TX", "url": "http://ijr.com/", "description": "Senior editor creating content to take over the internet at @TheIJR. Please be offended. Texas 'till I die. Send me tips: jason@ijr.com", "translator_type": "none", "protected": false, "verified": true, "followers_count": 16192, "friends_count": 3791, "listed_count": 425, "favourites_count": 9166, "statuses_count": 57278, "created_at": "Sat Jun 05 05:36:24 +0000 2010", "utc_offset": -10800, "time_zone": "Atlantic Time (Canada)", "geo_enabled": false, "lang": "en", "contributors_enabled": false, "is_translator": false, "profile_background_color": "709397", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/715607764/8a4bffc45a8e045957fea50d23a4cf9f.jpeg", "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/715607764/8a4bffc45a8e045957fea50d23a4cf9f.jpeg", "profile_background_tile": false, "profile_link_color": "FF3300", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "A0C5C7", "profile_text_color": "333333", "profile_use_background_image": true, "profile_image_url": "http://pbs.twimg.com/profile_images/908445554203611142/CYSTlAzs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/908445554203611142/CYSTlAzs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/152145921/1460826250", "default_profile": false, "default_profile_image": false, "following": null, "follow_request_sent": null, "notifications": null}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "extended_tweet": {"full_text": "US Amb. to UN Nikki Haley claims world leaders appreciated how blunt and straightforward he was in that fiery UN speech https://t.co/xN0UbSrFFk", "display_text_range": [0, 119], "entities": {"hashtags": [], "urls": [], "user_mentions": [], "symbols": [], "media": [{"id": 910966628614938624, "id_str": "910966628614938624", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "url": "https://t.co/xN0UbSrFFk", "display_url": "pic.twitter.com/xN0UbSrFFk", "expanded_url": "https://twitter.com/jason_howerton/status/910966757917102080/photo/1", "type": "photo", "sizes": {"medium": {"w": 1092, "h": 580, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1092, "h": 580, "resize": "fit"}, "small": {"w": 680, "h": 361, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 910966628614938624, "id_str": "910966628614938624", "indices": [120, 143], "media_url": "http://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "media_url_https": "https://pbs.twimg.com/media/DKRnUnzUIAAnxqr.jpg", "url": "https://t.co/xN0UbSrFFk", "display_url": "pic.twitter.com/xN0UbSrFFk", "expanded_url": "https://twitter.com/jason_howerton/status/910966757917102080/photo/1", "type": "photo", "sizes": {"medium": {"w": 1092, "h": 580, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1092, "h": 580, "resize": "fit"}, "small": {"w": 680, "h": 361, "resize": "fit"}}}]}}, "quote_count": 1, "reply_count": 0, "retweet_count": 5, "favorite_count": 6, "entities": {"hashtags": [], "urls": [{"url": "https://t.co/0JBtkKhQXk", "expanded_url": "https://twitter.com/i/web/status/910966757917102080", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}], "user_mentions": [], "symbols": []}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "filter_level": "low", "lang": "en"}, "is_quote_status": false, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "favorite_count": 0, "entities": {"hashtags": [], "urls": [], "user_mentions": [{"screen_name": "jason_howerton", "name": "Jason Howerton", "id": 152145921, "id_str": "152145921", "indices": [3, 18]}], "symbols": []}, "favorited": false, "retweeted": false, "filter_level": "low", "lang": "en", "timestamp_ms": "1506028605664"}
{"hangup": true, "heartbeat_timeout": true}

In [29]:
# We use the file saved from last step as example
tweets_filename = 'twitter_100.txt'
tweets_file = open(tweets_filename, "r")

for line in tweets_file:
    try:
        # Read in one line of the file, convert it into a json object 
        tweet = json.loads(line.strip())
        if 'text' in tweet: # only messages contains 'text' field is a tweet
            print(tweet['id']) # This is the tweet's id
            print(tweet['created_at'])# when the tweet posted
            print(tweet['text']) # content of the tweet
                        
            print(tweet['user']['id']) # id of the user who posted the tweet
            print(tweet['user']['name']) # name of the user, e.g. "Wei Xu"
            print(tweet['user']['screen_name']) # name of the user account, e.g. "cocoweixu"

            hashtags = []
            for hashtag in tweet['entities']['hashtags']:
                hashtags.append(hashtag['text'])
            print(hashtags)

    except:
        # read in a line is not in JSON format (sometimes error occured)
        continue


910996495414865920
Thu Sep 21 22:37:44 +0000 2017
RT @frogman_UC: reaper
Salim Ghadafar 完成!

マスタージェダイをイメージしました。
グラデハイライトを意識して塗りぬり!なかなかうまく塗れたかな。
地の利を得たぞ!

#reapermini
#宮原リーパーズ https://t.co/p…
822607969217052672
㈱かえる男商会アジア戦線支店
frogman_UC
['reapermini', '宮原リーパーズ']
910996495414919168
Thu Sep 21 22:37:44 +0000 2017
金曜日♪&amp;給料日♪
2882321252
奏@archer
music_comic_S
[]
910996495431868416
Thu Sep 21 22:37:44 +0000 2017
Royal 2 - Your Hit Music Station
#nowplaying Thunderstruck by AC/DC
1382618808
Royal 2
onroyal2
['nowplaying']
910996495406690307
Thu Sep 21 22:37:44 +0000 2017
RT @TheMeemStreams: This shit right here is why I have #Islamaphobia why do #Liberals want to let these animals into our country? #MAGA… 
711598819104964608
NewRoFlo
newroflo
['Islamaphobia', 'Liberals', 'MAGA']
910996495419297792
Thu Sep 21 22:37:44 +0000 2017
RT @rac1: El diari britànic ‘The Times’ demana un referèndum per a Catalunya https://t.co/55cUo20J3V
119728073
BZN
albertBZN
[]
910996495406702592
Thu Sep 21 22:37:44 +0000 2017
RT @AmerAcadPeds: @EHMcKennaMD @SenJohnMcCain @JeffFlake @PedsGeekMD @davhill @SenatorBurr @SenThomTillis @WFKARS @SenatorCollins… 
305713110
Kyla Boyse
boysek
[]
910996495402360834
Thu Sep 21 22:37:44 +0000 2017
RT @DANKG0D: When the blunt rips and you have to perform surgery on it https://t.co/fAKQJxfK94
3904089979
Twig
_twig1_
[]
910996495440195584
Thu Sep 21 22:37:44 +0000 2017
RT @LTCPLANNINGNEWS: Marriage after age 50 requires advance plan for #LongTermCare  | LTC News https://t.co/NfxMFwqAbL Protect savings Ease…
906519158887784449
LTC News
LTCPLANNINGNEWS
['LongTermCare']
910996495419138048
Thu Sep 21 22:37:44 +0000 2017
RT @joniele13: 「ヘーーイ、牛丼買って来たヨーいっしょに食べるネー!」
みたいに差し入れ持って来てくれそうな、なか卯コラボ時の金剛ちゃんちょうかわ

187/300 https://t.co/uFw0NugUpW
180846348
はやぶさ
24e5hayabusa
[]
910996495410843648
Thu Sep 21 22:37:44 +0000 2017
RT @Trey_Richards: Me: 🙋🏽‍♂️Can I use the restroom?

Teacher: I don't know...CAN you?

Me: https://t.co/eft5f1Afdz
2303669930
ㅤ
leahcorbett5
[]
910996495440207872
Thu Sep 21 22:37:44 +0000 2017
Petition: End the export of live farm animals after Brexit. https://t.co/ZAOezC47H4
789504532808134656
Caterina Staffy
StaffyHelen
[]
910996495406649350
Thu Sep 21 22:37:44 +0000 2017
@CocoLameIa @FutboIDan Can vouch for this
2708020197
Nathan
FirminoCF
[]
910996495406587904
Thu Sep 21 22:37:44 +0000 2017
Subuh anak anak ibu.
2684065200
Mira
AmiraaHamka
[]
910996495419215872
Thu Sep 21 22:37:44 +0000 2017
RT @Juan_LuchoXXX: New films, New covers @HarmonyFilms @Francy_DiCaprio @HenessyAlina @ScarlettRevell #pornlife https://t.co/Jn7hRxN0ts
1049132989
SPANISH STR8 MALE
MALEStr8
['pornlife']
910996495402401792
Thu Sep 21 22:37:44 +0000 2017
Fantasy Football Week 3: Start Todd Gurley on Thursday Night Football? Sit Sammy Watkins? Make the right call with our Lineup Cheat Sheet …
343417277
Fball.info
MRfanFball
[]
910996495423475714
Thu Sep 21 22:37:44 +0000 2017
RT @cchukudebelu: Interestingly, the man who heads Customs today sat on the Kangaroo panel that sentenced him to death. https://t.co/Bm7O0g…
210387375
HarshNaijaMom
OlolaTohRhea
[]
910996495440080896
Thu Sep 21 22:37:44 +0000 2017
@anime_lv5359 眠い時のコーヒーとミントガムはマジで神だよ😇🙏
910628534971801600
やま
jellllyphant
[]
910996495402508288
Thu Sep 21 22:37:44 +0000 2017
سبحان الله والحمد لله والله أكبر https://t.co/NtUhw55TVE
764187546
جوووج ❥•
NseetXx
[]
910996495406698498
Thu Sep 21 22:37:44 +0000 2017
vasiyetimdir, ben öldüğümde telefonum ve günlüğümle gömsünler beni
2294492492
GÖKÇE
gokcedz
[]
910996495440207876
Thu Sep 21 22:37:44 +0000 2017
@Joe_Sugg Youre so cute
855571352794923009
Uni//E&G FOLLOW? 💙
loveonlydolan
[]
910996495402459136
Thu Sep 21 22:37:44 +0000 2017
RT @UKCryptoTrader: Some of the most useful studies to use when trading cryptocurrency #bitcoin #ico #cryptocurrency #ethereum #bittrex htt…
351233098
ToTheMooner
tothemooner
['bitcoin', 'ico', 'cryptocurrency', 'ethereum', 'bittrex']
910996495436001281
Thu Sep 21 22:37:44 +0000 2017
@CBSEveningNews @MajorCBS Oh ha notes use a fancy word @ it looks so suspicious you just keep on morons you don't g… https://t.co/FEs3631pjU
824780876605190144
CPowell
CelestePowell16
[]
910996495436009473
Thu Sep 21 22:37:44 +0000 2017
RT @kumailn: #SNL https://t.co/kHaqfNvCrA
21911218
Heath Reburn
hreburn
['SNL']
910996495427612672
Thu Sep 21 22:37:44 +0000 2017
RT @Reporte_Indigo: Llueve en #AlvaroObregon286, detienen labores de #rescate, #voluntarios y familiares no se van:… 
3544995912
Geo_geo
geo_ggeeoo
['AlvaroObregon286', 'rescate', 'voluntarios']
910996495440269312
Thu Sep 21 22:37:44 +0000 2017
Я так скучаю по тебе
460361234
я Элина 💅🏻
eleanorhatesyou
[]
910996495431856128
Thu Sep 21 22:37:44 +0000 2017
RT @BlackNerd: URKEL, DID YOU DO THIS??? Farewell, #FamilyMatters house. At least I got to see it once. (Thanks @ChannelAwesome) https://t.…
909481641935986688
Drew
BigDreux88
['FamilyMatters']
910996495410827264
Thu Sep 21 22:37:44 +0000 2017
https://t.co/nA3O9Fb8RI
154038761
Antonio Albizo
AntonioAlbizo
[]
910996495436062721
Thu Sep 21 22:37:44 +0000 2017
@capyvaro Ebaaa! Seria o melhor presente de aniversário??? Aí pede pra ele terminar o vídeo com... https://t.co/QffGIUNddq
242586401
zovira
elvirapb_
[]
910996495419162624
Thu Sep 21 22:37:44 +0000 2017
RT @apio7777: 【要拡散】
安部首相がまだ衆院選を名言していませんが、選挙濃厚なのであえて全国の少しでも多くの方々に安部政権の今までの成果を整理したので見ていただきたい!

必見です。ぜひ選挙での参考としてください。 https://t.co/N0ihywhmoi
28976131
ぐらいくたん
graiq_grateful
[]
910996495402496000
Thu Sep 21 22:37:44 +0000 2017
RT @cassndrascain: @Jeff__Benjamin ik a lot of armys are gonna be here so stream DNA on Spotify!!! tomorrow is last day for billboard… 
50764824
YoonMin_BTS
Dementia_Smile
[]
910996495402393600
Thu Sep 21 22:37:44 +0000 2017
TCHRD submits petition on electoral reforms to #Tibetan parliament in exile @tchrd_ 
https://t.co/WQFZZ5TTR6 … https://t.co/VEiGxqFAGa
810454941500317696
Clara
c1ara11
['Tibetan']
910996495423426571
Thu Sep 21 22:37:44 +0000 2017
Si no lo harías en la vida real, no lo hagas en tus redes sociales. https://t.co/53IhoZ3Rad @nytimesES
174416259
Jenna
Jennatn10
[]
910996495402360832
Thu Sep 21 22:37:44 +0000 2017
#オマエの車じゃない選手権
s-craftデモカー https://t.co/S4uOwdApeq
4708551614
( 'ω'o[みうら]o受験
d_miura_
['オマエの車じゃない選手権']
910996499605086209
Thu Sep 21 22:37:45 +0000 2017
RT @slobovaskovic: Ruža Vjetrova - Kratak predah sa Unom
https://t.co/Pehzc8o5Md
863990610
Mistress Of Oz
MistressOfOz
[]
910996499600777216
Thu Sep 21 22:37:45 +0000 2017
RT @_dodoria2: 10月2日(月) 0:00~23:59
マーリン&アルトリア・ペンドラゴン(セイバー)ピックアップ!! https://t.co/TBUTFO5oD2
1552811156
蜜柑
mikaaaaan27
[]
910996499613364225
Thu Sep 21 22:37:45 +0000 2017
RT @kokoromidaregif: #心が乱れた時に見るgif https://t.co/GFvBhBCQ5y
783162547000123392
ゲイネキ🐄🌈もののけピーナッツ🥜
the29hand_liar
['心が乱れた時に見るgif']
910996499626000384
Thu Sep 21 22:37:45 +0000 2017
@marinana_0922 誕生日おめでとう🎁
1381906470
オノザキ ツバサ
zaki_0013
[]
910996499609280512
Thu Sep 21 22:37:45 +0000 2017
シティホテル 女子大生 カンパイ系 バツイチ デリバリーヘルス 出稼ぎ ホスラブ メンズエステ 風俗 メール 前借り フォロバ 支援アカウント リフォロー RT フォローミー フォロワー sougofollow followme 相互フォロー100%
738738563492118529
フェリス マネジメント|スカウト 出稼ぎ
Felice_Manage
[]
910996499600785408
Thu Sep 21 22:37:45 +0000 2017
@SEOUL_RIVER 아닌데, 진짜 괜찮다니까요. 예뻐요, 나팔꽃도 그렇고 작가님도 그렇고. ( 미소를 지으며. ) 사진 더 보여주세요.
909421352662163463
[황보 연준 / 27]
H_boyjun
[]
910996499605200897
Thu Sep 21 22:37:45 +0000 2017
RT @uebrisei: eu faço ignorância e nem percebo, só vejo a pessoa ficando puta e eu tipo??????????? q q foi
248408822
adriano
njddl
[]
910996499625947136
Thu Sep 21 22:37:45 +0000 2017
RT @aboutEpigram: โลกกำลังทดสอบ
ความอดทนเราอยู่ใช่มั้ย 

ทำไมชอบเหวี่ยงใครไม่รู้เข้ามา
ละก็พาเขาออกไป https://t.co/yUfh92gUXV
888399192527257600
ซีหนิว
prc_new
[]
910996499626172416
Thu Sep 21 22:37:45 +0000 2017
RT @AccurateTexts: These 18 Mind-Boggling Statements That Will Make You Say “Huh?!” 😱 https://t.co/kzgEMMrIrv
861450107996319744
tumler Quotes
girllifetextes
[]
910996499634438144
Thu Sep 21 22:37:45 +0000 2017
RT @slobovaskovic: Balaban napustio DNS                        https://t.co/AFWYLFoBV4
3213635447
Emmy O'Dwyer
emmyodwyer
[]
910996499634438145
Thu Sep 21 22:37:45 +0000 2017
@realDonaldTrump Breaking: North Korean leader responds to Trump: ‘I will surely and definitely tame the mentally d… https://t.co/67MSj9oAMJ
1164428065
WinterIsComing🔥
CathlynDaly
[]
910996499621957632
Thu Sep 21 22:37:45 +0000 2017
RT @USSR_Is_We: В СССР умели мотивировать https://t.co/tkzvEFZyZ6
766122719016607744
Махони ♌
mh100810
[]
910996499634454529
Thu Sep 21 22:37:45 +0000 2017
RT @BonHaus: MÁNDENME INFO! Centros de acopio para Puebla, Morelos, Oaxaca y Chiapas!La gente está desesperándose allá y aquí solo nos amon…
3350275611
Giselle Rodriguez🌻†
NgisellePDC
[]
910996499630366720
Thu Sep 21 22:37:45 +0000 2017
Tenes una voz preciosa jimin @BTS_twt
66201574
flo~
LadyLuisina
[]
910996499617779712
Thu Sep 21 22:37:45 +0000 2017
Começaram se render aos padrões
294770561
Diego Monarco™
DiegoMonarco
[]
910996499626057728
Thu Sep 21 22:37:45 +0000 2017
RT @daltandpeppper: you're tellin me i can come home wasted &amp; rip open a popsicle to prevent my hangover now???? 

game changed. https://t.…
2436292232
Lil Chipotle 💃🏽
_kaarrinaa
[]
910996499596640256
Thu Sep 21 22:37:45 +0000 2017
RT @Senggigi_Jazz: Nikmati pesona sunset di Senggigi berpadu dengan alunan musik Jazz musisi2 handal dari dalam dan luar negeri, 22-23… 
136936841
Gading Rinjani
gadingrinjani
[]
910996499630346240
Thu Sep 21 22:37:45 +0000 2017
@marcoluque @Aerosmith @Vevo_Brasil Que moral hem!!
832960786817490944
Flávio
oFlavio_souza
[]
910996499596791809
Thu Sep 21 22:37:45 +0000 2017
Fazia tempo que não sofria tanto de cólica
896944949056466944
Larissa Monteiro
_larismonteiro
[]
910996499626168320
Thu Sep 21 22:37:45 +0000 2017
RT @AccurateTexts: These 18 Mind-Boggling Statements That Will Make You Say “Huh?!” 😱 https://t.co/kzgEMMrIrv
794185094768553984
Marvis Nkpornwi🔵‏
i_amMarvis
[]
910996499621965826
Thu Sep 21 22:37:45 +0000 2017
@l3nee91 Option 2. I love the white buttons  😍
981955736
Shelby Moore
ShelbyM07990439
[]
910996499621830656
Thu Sep 21 22:37:45 +0000 2017
RT @apio7777: 【要拡散】
安部首相がまだ衆院選を名言していませんが、選挙濃厚なのであえて全国の少しでも多くの方々に安部政権の今までの成果を整理したので見ていただきたい!

必見です。ぜひ選挙での参考としてください。 https://t.co/N0ihywhmoi
2385297092
雨傘
amagasa_rider
[]
910996499634511872
Thu Sep 21 22:37:45 +0000 2017
RT @whosblair: saudade do tempo que meus nene compartilhavam ate as roupa https://t.co/1OKPG1Jxrt
631513519
joyce
sngoxe
[]
910996499621916672
Thu Sep 21 22:37:45 +0000 2017
@MaysoonAwni أعلم ذلك واعلم أيضا مدى حبك ودفاعك الصادق والمستميت على الزعيم الخالد عبدالناصر الذي يتطاول عليه الأقز… https://t.co/27g3UGeJaV
198597387
ناجي بشره
nagyboshra
[]
910996499609395200
Thu Sep 21 22:37:45 +0000 2017
RT @BlakeDontCrack: The american flag is just as triggering as the confederate flag.
204561708
Revolution Now ☭
BeezerSmeezer
[]
910996499605139457
Thu Sep 21 22:37:45 +0000 2017
RT @jakequery: The Rams face the 49ers tonight, and Chuck Pagano will be mind blown.
55732479
Austin Brooks
AustinBrooksie
[]
910996499621928962
Thu Sep 21 22:37:45 +0000 2017
RT @OfficialCSO: When you realize that after this Saturday, the college football season will already be 1/3 of the way finished... https://…
206322573
Heather benefield
hethbene
[]
910996499626000385
Thu Sep 21 22:37:45 +0000 2017
Vote 4 your watershed October 16 #municipal decisions have huge impact on land use #water #abpoli @willowcreek26… https://t.co/TKc3nNIOxk
2376034904
Oldman Watershed
OldmanWatershed
['municipal', 'water', 'abpoli']
910996499609374725
Thu Sep 21 22:37:45 +0000 2017
RT @CDU: Seriöse Verschläge? Durchgerechnete Pläne? Fehlanzeige bei Schulz und seiner SPD! #btw17 #schlussrunde https://t.co/e0xVa0MKRm
901860816009482240
Stefan Franke
StefanPolitik
['btw17', 'schlussrunde']
910996499600994305
Thu Sep 21 22:37:45 +0000 2017
@EmisorasUnidas @sobremesaeu Haber si con la denuncia del GAM, no ponen atención a las próximas.
551185274
JUAN MANUEL RAMIREZ
ramirez_juanma
[]
910996499617763329
Thu Sep 21 22:37:45 +0000 2017
RT @vampwhos: Inglês: karma is a bitch man

legendado: tudo que vai volta meu irmão

dublado: ESSA É A LEI DO RETORNO E NÃO ADIANTA CHORAAA…
711584820
david 🤖
transkawa
[]
910996499596812289
Thu Sep 21 22:37:45 +0000 2017
RT @Domyenn: These is bloody nails https://t.co/LDQuxoAWRA
756661630889369600
💋
lovelyxemely
[]
910996499605139459
Thu Sep 21 22:37:45 +0000 2017
RT @realDonaldTrump: A big day for the U.S. at the United Nations!
704113504739930112
Barbara Vincent Long
Barbara15527741
[]
910996499601002496
Thu Sep 21 22:37:45 +0000 2017
RT @AisthenewishA: goodbye rude bitches. it's one thing to have your own opinion but another to mock&amp;diss @bts_twt! @brookeebunce… 
901176056731901952
#STREAMDNA40MIL
come_atme_antis
[]
910996499621908485
Thu Sep 21 22:37:45 +0000 2017
@kaktuskiz Tamam yav hdhdhd
594869991
උᎥηඋᎥ ßεφ ☪
tugayyurtseven
[]
910996499621965824
Thu Sep 21 22:37:45 +0000 2017
@shigurekawaii @MtU17830715 Es hermoso 😍
883021166
Garavato JAAM
GaravatoJAAM
[]
910996499634454528
Thu Sep 21 22:37:45 +0000 2017
RT @anthoknees: I'm so fucking tired. https://t.co/PCP8ZXusi9
239649369
🤘🏽
mwtwigs
[]
910996499609407489
Thu Sep 21 22:37:45 +0000 2017
@rosaneoliveira Mas se tem dinheiro no caixa único  é não  paga está  se apropriando do salário?! Pode?
68567717
Advocatus diaboli
Andresessegolo
[]
910996499617558528
Thu Sep 21 22:37:45 +0000 2017
RT @slobovaskovic: Alternativa
https://t.co/sDneEp1vml
2202991860
Daniel Schuurman
dschuurm
[]
910996499634511878
Thu Sep 21 22:37:45 +0000 2017
RT @ItzelBarajaas: Carta encontrada entres los escombros de la CD. MX. https://t.co/ARQZCvQJYo
2474771071
Indi
lesliegcmx_
[]
910996499596705794
Thu Sep 21 22:37:45 +0000 2017
That face https://t.co/hN89LNveKq
852807271
Christo
cocainebooty
[]
910996499634499584
Thu Sep 21 22:37:45 +0000 2017
Falleció por desnutrición severa un recluso en Los Teques https://t.co/vVMCBEbZc7 https://t.co/xLgIcAPWuE
773245440926121985
Noticias Diarias
noticiasdiarve
[]
910996499613528064
Thu Sep 21 22:37:45 +0000 2017
Wife got me a Caps controller for cake day!!! #howboutdat @CSNCapitals @Capitals https://t.co/aydHpyOGsF
4843469067
Logan The Wolverine
LoganSean21
['howboutdat']
910996503811956737
Thu Sep 21 22:37:46 +0000 2017
RT @lMPAPl: putting a gem back on the TL https://t.co/P3bazk6NL9
541302471
breezus
breeweezy6
[]
910996503795179520
Thu Sep 21 22:37:46 +0000 2017
RT @Lin_yeon: 마이크드롭 https://t.co/Kp4IXBLrnD
825746390231965696
궈녜
B4AtWFXsDnHN1PF
[]
910996503803478016
Thu Sep 21 22:37:46 +0000 2017
Hi Bich https://t.co/p76e5lwF5J
1315119624
Nay
xx_jadore_dior
[]
910996503820328961
Thu Sep 21 22:37:46 +0000 2017
野性爆弾くっきー  アートフェス「バーニングマン」に参上! https://t.co/x680Q4IOpq @YouTubeさんから
63103427
xra
xra00
[]
910996503811956736
Thu Sep 21 22:37:46 +0000 2017
@6b231b081a254b9 さとさん 
おはようございます!

息子さんが話ししてる光景がいいなぁー
それだけでホッコリ←内容とズレてるな😅
元気で自立してればいいしねー
今日もよろしくお願いします(*^^)v
724754580072849409
みさちゃん∞ 旅したい!
Hwe4vSw
[]
910996503820251137
Thu Sep 21 22:37:46 +0000 2017
RT @SGAG_SG: Mine is real 😂😂😂 https://t.co/t6oVsJwDhk
621257255
N.
_Neshlatinos_
[]
910996503824547840
Thu Sep 21 22:37:46 +0000 2017
RT @DAEWHI617: 솔찌키 흑발에 검정후드 휘 안좋아하는 사람도 인나요,,,¿ https://t.co/vIY2QcfF9X
897590708869017600
☁대휘맘하셍언☁
AllIWannado14
[]
910996503824670720
Thu Sep 21 22:37:46 +0000 2017
RT @secretjimin: jeff vivendo falando do bts e babando o ovo do namjoon, agora a máscara caiu, uma verdadeira cobra tenho nojo
718237745597050880
duda; DNA
yoongodsz
[]
910996503807770624
Thu Sep 21 22:37:46 +0000 2017
@s_d_naito 内藤選手、おはよーうございます☀️🙋❗
内藤選手、朝早いですねぇ😃✨✨私はまだ眠いです( ̄q ̄)zzz内藤選手とBUSHI選手の2ショットのお写真Σp[【◎】]ω・´)いいですねぇ〰️(///ω///)♪💕💕💕
760013633648676869
かよ
D3sKdl8vIVIpDcR
[]
910996503799328768
Thu Sep 21 22:37:46 +0000 2017
@LOVINN16 ロビンさんおはようございます٩(`・ω・´)و オォォォ!!!
1361854362
もりお
surprise_mm1
[]
910996503791095808
Thu Sep 21 22:37:46 +0000 2017
اللهم صل وسلم على سيدنا محمد وعلى آله وصحبه أجمعين  ♻️  https://t.co/BeEmAJvCNT
331087974
AbdennourJijeli
aiglejij
[]
910996503828635648
Thu Sep 21 22:37:46 +0000 2017
RT @DiariodeMorelos: ¡Morelos de pie!
Te esperamos en nuestras instalaciones para ayudar juntos a nuestros hermanos morelenses… 
148382727
J.C. Toledo
juancarlostole
[]
910996503803645953
Thu Sep 21 22:37:46 +0000 2017
RT @SoyNovioDeTodas: Sin palabras. 🙏 https://t.co/lmL0iVczm0
844618612119875584
Zorrito Principito
chachacualito
[]
910996503812034561
Thu Sep 21 22:37:46 +0000 2017
RT @relaxingview: ur trouble but i dig that
1279464020
Spook
avendano_joshua
[]
910996503824609280
Thu Sep 21 22:37:46 +0000 2017
@0126S21224 리본은 역시 빨간색이지!! 하면서 했어요ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ 퍼펙트한가요?
822684488421384192
세나 아메
Ame_f_Ritsu
[]
910996503828860928
Thu Sep 21 22:37:46 +0000 2017
RT @Flantasma1: acompañame a ver esta triste historia https://t.co/ggzxhltuEe
1003162993
hernan
TagHernan
[]
910996503820242944
Thu Sep 21 22:37:46 +0000 2017
RT @furihata_ai: ぴぎぁ!!
すすすすごいです✨
かわいいルビィをありがとうございます🍭💕

#黒澤ルビィ生誕祭2017 https://t.co/5QkmjTmUks
847381379247611904
祭亜@あかが民ʕ •́؈•̀ ₎
saia102724
['黒澤ルビィ生誕祭2017']
910996503828758528
Thu Sep 21 22:37:46 +0000 2017
RT @P8H22: @taifcci #مسابقه_اليوم_الوطني_بغرفه_الطايف
.
نعم يا مملكة العطاء🇸🇦
لقد شغفت قلبي حبا 
وتجاوزت باشراقتك 
كل مقاييس ا… 
422832642
suffel
suffel3
['مسابقه_اليوم_الوطني_بغرفه_الطايف']
910996503803678721
Thu Sep 21 22:37:46 +0000 2017
@helpguysfollow Either of the twins :)
2707266632
¿follow e&g?please!
shmuckk
[]
910996503803592705
Thu Sep 21 22:37:46 +0000 2017
@GamingHistorian Gives me a warm feeling nintendo uses their products for a good cause. Am sure they still make mon… https://t.co/h6ktqYY02b
3119683530
Edward's Frightmares
MegaDudd
[]
910996503816261632
Thu Sep 21 22:37:46 +0000 2017
معتبره دا الحساب ك متنفس بالنسبه ليا اكتر شي
892216965653291014
Cookie
lilcookiedoh
[]
910996503795257344
Thu Sep 21 22:37:46 +0000 2017
RT @JayBilas: If only the players added value... https://t.co/Go9WjnwcEx
286210257
〽️ike Latoski
mike_latona95
[]
910996503803650049
Thu Sep 21 22:37:46 +0000 2017
@Freeyourmindkid Niggas got 25000 ways to sexually identify! Dummies
2232134125
P Stacks
PStacksMo
[]
910996503803686913
Thu Sep 21 22:37:46 +0000 2017
@lucaslogal @mariuvidal Gracias @maruividal por hacer lo que no se iso en tantos años
3990526397
martin borda
martinborda9
[]
910996503828877314
Thu Sep 21 22:37:46 +0000 2017
RT @Estgfer_allah_: الاستغفار يا من تشتكي الفقر، الاستغفار يا من تشتكي الهموم والضيق، الاستغفار يا من تشتكي من كثرة الذنوب، استغفر الله♡ ht…
252446348
عبدالرحيم الصاعدى
saadam0a
[]
910996503816228864
Thu Sep 21 22:37:46 +0000 2017
@LSpeedie Miss u love u xx
1522519406
Hannah Harley
HannahHarley_
[]
910996503807840258
Thu Sep 21 22:37:46 +0000 2017
Bunu eski sevgiliye uyarlayınca muhteşem oldu 😂 https://t.co/QpUBCb5jY8
382889160
Elo
eloAchilles
[]
910996503820476416
Thu Sep 21 22:37:46 +0000 2017
RT @marveljedi: when pennywise said “i’m not real enough for you? it was real enough for georgie” i was like damn alright PETTYwise that wa…
87239705
chlo
ChloCoveney
[]
910996503820414977
Thu Sep 21 22:37:46 +0000 2017
@zekikayahan yaa o tatlı değil baklava düzeltme yap Zeki :)))
95551803
Burak Mermer
burakmermer
[]
910996503828815872
Thu Sep 21 22:37:46 +0000 2017
@ForeignMinistry @KingAbdullahII الله يمد بعمر سيدي ابو حسين
1407309559
معاذ الحديد
Moath1981
[]
910996503807893504
Thu Sep 21 22:37:46 +0000 2017
@eoleppy https://t.co/7kWXuQquum
119917859
MightyTighties
eoleppy
[]
910996503795310595
Thu Sep 21 22:37:46 +0000 2017
Me too my haters: https://t.co/DH1CoHSguo
339074464
Elvis Ebi Enekorogha
KingSparzie
[]
910996503820414976
Thu Sep 21 22:37:46 +0000 2017
RT @MikeReiss: TE Rob Gronkowski (groin) is present at practice today, as are LB Dont'a Hightower (knee) and WR Danny Amendola (concussion/…
483321387
BrokeNotBroken
BrokeNotBroken1
[]
910996503807905792
Thu Sep 21 22:37:46 +0000 2017
https://t.co/v8Jx0TXjgZ
136007435
Melancia do Acordeon
mellancia_dias
[]
910996503824666624
Thu Sep 21 22:37:46 +0000 2017
Football life https://t.co/IVr3kY2WTQ
888332241012699136
Zionna Lindsey
ZionnaLindsey
[]
910996508002074624
Thu Sep 21 22:37:47 +0000 2017
I remember you all the time
4121596933
Eunhye
SR_Eunhye84
[]
910996508018798592
Thu Sep 21 22:37:47 +0000 2017
RT @yuteesonyu: น้องไม่เชื่อว่าข้างนอกมีจริง ไม่เชื่อว่ามีภูเขา มีทุ่งหญ้า มีคนอีกมากมาย น้องตื่นมาก็เจอแต่โต๊ะ อ่างล้างหน้า เก้าอี้ ทุกอย่…
559423044
เคอาไอเอส
p_earnearn
[]
910996508002091015
Thu Sep 21 22:37:47 +0000 2017
kızkardeşlikle ilgisi yok iğreniyorum senden
812748371035353088
möna kronasis
bzkrls
[]
910996508002074625
Thu Sep 21 22:37:47 +0000 2017
政宗/No matter how much time goes by, I love you.
2197110530
デレデレBASARAbot
deredere_bsr
[]
910996508023046144
Thu Sep 21 22:37:47 +0000 2017
I just added this to my closet on Poshmark: I'm Trisha, the seller &amp; shopoholic!. https://t.co/lQbIsQzd1W via @poshmarkapp #shopmycloset
2683542422
TD
TrishOnFire
['shopmycloset']
910996507985244160
Thu Sep 21 22:37:47 +0000 2017
today's stats : 20 non-followers. found via https://t.co/oAgthNAPJk
779128171945865216
-.-
AlphabetBoyAB
[]
910996507997777920
Thu Sep 21 22:37:47 +0000 2017
RT @bettyfreedoms: The loopy left is never satisfied with anything. Get them out. Then enlist in our patriot army at… 
461145224
Doug
snikpmis
[]
910996507989561344
Thu Sep 21 22:37:47 +0000 2017
I'm at 津田駅 in 枚方市, 大阪府 https://t.co/WfSonE5DFE
863699983970689024
(新)京阪人
LKG_KV234N3
[]
910996508014776321
Thu Sep 21 22:37:47 +0000 2017
RT @DiarioContraste: Esta cantidad donarán Facebook y Google a la Cruz Roja de México https://t.co/Ptfnv7RWDe
137046968
Nebreska Silva
LaPeque69
[]
910996508010524683
Thu Sep 21 22:37:47 +0000 2017
RT @onlineva: The *second* i start to get prideful, the universe snatches me up so quick
900488530463522816
Hugh
__hughston
[]
910996508002177024
Thu Sep 21 22:37:47 +0000 2017
RT @Mufalsa: feliz dia flor de pelotu2
1686903547
Jochhh🌈💛
louisfckingcute
[]
910996508014731265
Thu Sep 21 22:37:47 +0000 2017
RT @minseokanalha: Nível de intimidade do  EXO https://t.co/WWAZy5xjmN
2912634934
?
biitch_chan
[]
910996508014792704
Thu Sep 21 22:37:47 +0000 2017
I can't hang with people that show off money and guns and throw gang signs, they start thinking that better than you hell nah
898081751813283840
Los
Carlosgnox
[]
910996508002193410
Thu Sep 21 22:37:47 +0000 2017
@chefboyarDinunz @Mr_Bokash Hi
419918066
Trey™
TheTreyParker
[]
910996507993759747
Thu Sep 21 22:37:47 +0000 2017
smp tem algo pra estragar mh felicidade 😔
772253299571654662
Silvão
biffarAtee_
[]
910996508010479617
Thu Sep 21 22:37:47 +0000 2017
estava crente q a prova seria hoje: fui iludida
251814582
Rayanne
rayanninha0
[]
910996508006338565
Thu Sep 21 22:37:47 +0000 2017
RT @rolalaloves: Can We All Just Admit That Smoothie Bowls Are Big Fat Lies?https://t.co/1DUJCbPWUv
420106275
Lena L
Lenallure
[]
910996508014776322
Thu Sep 21 22:37:47 +0000 2017
RT @kxrolmylife: MATTEO ME DUELE #RuggeroPasquarelli #SoyLuna #KarolSevilla  #KCAColombia
274278698
Hillary Pierina
harryhpmm
['RuggeroPasquarelli', 'SoyLuna', 'KarolSevilla', 'KCAColombia']
910996508014776320
Thu Sep 21 22:37:47 +0000 2017
RT @SoloPendejo: Tirar el "uuuuuuuuh" o "nooo lo que te dijo" para armar mas bardo.
2564226054
♥ Vale Aranda ♥
_ValeAranda
[]
910996508018987008
Thu Sep 21 22:37:47 +0000 2017
bebo cerveja pra tentar ficar calma e só me irrito mais
1134648890
liaju
juliavolgue
[]
910996508018974721
Thu Sep 21 22:37:47 +0000 2017
RT @FBChumboldt: Watch "Replacement Theology" on YouTube
https://t.co/JIH7cwJUHf
905811178433253378
Todd James
ToddJames1769
[]
910996507997949958
Thu Sep 21 22:37:47 +0000 2017
RT @lildurk: I'm like Obama
908009798
aaliyah keef
eliannam__
[]
910996507997990912
Thu Sep 21 22:37:47 +0000 2017
RT @LowkeyTwits: lmao, eat shit Tayler https://t.co/lCPph3d9gk
60714005
Fahad Al Saleh♌
Fahood14
[]
910996508023164928
Thu Sep 21 22:37:47 +0000 2017
RT @Luz_P57A: 2:40
372.905
WATCH UNA NA ON VEVO
https://t.co/vkUl5sZeLW
#Lali #UnaNa #Lalitas #KCAArgentina
762727151552630789
Tamyy 3/11
Lalita310
['Lali', 'UnaNa', 'Lalitas', 'KCAArgentina']
910996508014776324
Thu Sep 21 22:37:47 +0000 2017
12 Easy Ways to Celebrate Banned Books Week by @UppercaseBox  https://t.co/9ylkHPkJbs via @uppercasebox
385596550
FanMail ⚡ GGC I101
fanmailbox
[]
910996508023164929
Thu Sep 21 22:37:47 +0000 2017
#fajr https://t.co/uZzWTvRBuP
739550678515908608
Tawhid No Bid'a
Saniajijlia
['fajr']
910996508010586112
Thu Sep 21 22:37:47 +0000 2017
RT @zaralarsson: Omfg the fact that old white men still wanna debate this 💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀… 
3244594513
raegan🌴♥️
Irun___
[]
910996508002144257
Thu Sep 21 22:37:47 +0000 2017
@taifcci ممكن دعمكم بريتويت للتغريدة المقتبسه
ما بتخسرون شيئ 👇👇

#العيسي_يسيء_للملك_فيصل

https://t.co/fErFhU4bEJ
702473601195364352
مستأنس والحمدلله 🌚
10Moooo90
['العيسي_يسيء_للملك_فيصل']
910996507993747456
Thu Sep 21 22:37:47 +0000 2017
@FreeMemesKids @aikoktano
889702531928133632
abdelGhani
Hvrky
[]
910996508023099392
Thu Sep 21 22:37:47 +0000 2017
RT @BTS_twt: 석지니 https://t.co/dYzCjUkoAQ
1605271411
m
junhaorealness
[]
910996508002177025
Thu Sep 21 22:37:47 +0000 2017
This Is So Sad And Disheartening - Take A Look At Why Most People Are Getting Married ... - https://t.co/7jpb6yClk2 https://t.co/uWRI4Pq1C8
780611853638479876
Becky Blessing
Viking_Becky
[]
910996508010414080
Thu Sep 21 22:37:47 +0000 2017
付き合ってたら5年10ヶ月やて(笑)
70ヶ月やて(笑) https://t.co/sdJOJXvG8A
907530696100519936
me
me67081928
[]
910996512208908289
Thu Sep 21 22:37:48 +0000 2017
RT @kawaei_866: 💗みなさんおはようございますo(^o^)o今日は天気少し悪いみたいです(;^∀^)今日も1日頑張りましょう(^o^)/今日も宜しくお願いします🙇 https://t.co/89iaFVWCjb
883262592923213824
三木 三郎
ryunosuke_77_
[]
910996512196378624
Thu Sep 21 22:37:48 +0000 2017
Forever andever evergreen evergreen Forever andever evergreen family
1968057342
EverGreenFamily bot
EGF_bot
[]
910996512208912384
Thu Sep 21 22:37:48 +0000 2017
@dmrjewoo 🤧
1625910464
ً
dmryugyeom
[]
910996512208855040
Thu Sep 21 22:37:48 +0000 2017
RT @sagivsr10: ボンミスから始まったスマートフィクサーの取り付け加工...ようやく形には成りました(;´^ω^`)ナントカ
取りあえず...見れますw https://t.co/xELeKZYLot
3307042633
まさや
cuba0220_
[]
910996512196386816
Thu Sep 21 22:37:48 +0000 2017
monsta x can areumdawo my ass
2148663181
eunice
jeonstfu
[]
910996512188063744
Thu Sep 21 22:37:48 +0000 2017
RT @madmeyers: i just laughed for 15 minutes straight https://t.co/zAMgWglksE
446978162
caittt
caitlintravers1
[]
910996512192303104
Thu Sep 21 22:37:48 +0000 2017
RT @BMohamad68: الان تحميل السناب الحديث 

"التحديث الجديد" 2018

#سناْب_شات

#سَناب_عثمُان

من خلال الرابط التالي… 
896516090544750593
كلاسيكو ريال وبرشا
b1222bl
['سناْب_شات', 'سَناب_عثمُان']
910996512217350144
Thu Sep 21 22:37:48 +0000 2017
これは笑ってしまった
717353637333209089
おだっち
Aerody_
[]
910996512179494912
Thu Sep 21 22:37:48 +0000 2017
RT @CSUFootball: #StatePride

11.11.17 vs. Boise State. https://t.co/XetYpnd6XI
150033100
Jackson Sandell
jackson_sandell
['StatePride']
910996512213209093
Thu Sep 21 22:37:48 +0000 2017
He salido del trabajo y aunque tenga energías por la ansiedad y el estrés estoy reventadísimo. 
Y bueno, mañana toca más de lo mismo
286302246
†~~TitoZeus~~†
Juanpinfer76
[]
910996512188125185
Thu Sep 21 22:37:48 +0000 2017
RT @fthotladies: Good morning ADN. Breakfast is ready🍽
@yodabuda @ALDUB_inARTeam @ALDubFTnQT @BChanXL @jophie30 @lynieg88 @ricsl1600… 
3529837752
sunShine
tl_aldubEB
[]
910996512200589313
Thu Sep 21 22:37:48 +0000 2017
RT @totomohsen1: انا الأيد اللي مبعرفش اعضها مببوسهاش ..بدوس عليها بالجزمه..البوس داا تخليه لأمك
3319138502
♠ MǒĦặ๓ệd ♠
Mohamed41341333
[]
910996512187879424
Thu Sep 21 22:37:48 +0000 2017
@Kenchan_Prfm 教師の教え方にもよりますよね。中学の数学教師はひたすら楽しく教えてくれたので私でも95とか取れたので……。応用問題もきちんと解けたんで……
588330315
暫く心の安寧期間
hajime_music
[]
910996512179736576
Thu Sep 21 22:37:48 +0000 2017
RT @PabloGonzalez: Aparece el mejor Scocco en todo su esplendor. Brillante definición en momento clave.
1222054951
Tito
tito_amarilla5
[]
910996512204828672
Thu Sep 21 22:37:48 +0000 2017
I Don't Get My Hopes Up So I don't Get Disappointed
129411865
LEGEND💔
LegendUnheard
[]
910996512196513792
Thu Sep 21 22:37:48 +0000 2017
RT @VoceNaoSabiaQ: A malaxofobia é o medo de amar. Você tem?
709104508589219840
tatiana oliveira
tati_oliveira35
[]
910996512192286720
Thu Sep 21 22:37:48 +0000 2017
@stitcheddrummer @stitchedupheart @MonsterEnergy @SABIAN_Vault @MonsterMusic Becca blowup doll ?
556391976
ROCKSMETALHOUR
RocksMetalHour
[]
910996512196489216
Thu Sep 21 22:37:48 +0000 2017
@jordanmid @bloglovin What about kids' parks that don't have major roller coasters/ thrill rides?
812109882052771895
Coaster Cinema
Coaster_Cinema
[]
910996512213291009
Thu Sep 21 22:37:48 +0000 2017
So I have a completely American accent yet I always read and say paso or samba like @SharnaBurgess 😂
905641361520697344
Mina
dwtssharna
[]
910996512183848963
Thu Sep 21 22:37:48 +0000 2017
@borjaotero_7 Quien?
305498737
Ignacio Sinapellido
IgnacioSinapell
[]
910996512188043268
Thu Sep 21 22:37:48 +0000 2017
Some good moments you just gotta keep to yourself. ❤️
843494076359958528
V•
lifewitval
[]
910996512188063751
Thu Sep 21 22:37:48 +0000 2017
@SteveBecker_LV @BBCEarth Albeit "unnatural" and touristic now, this situation seems to bring more harmony there be… https://t.co/UHUpYUCuKK
886715255996510209
Le Crabe-Fantôme
Crabe_Fantome
[]
910996512196489217
Thu Sep 21 22:37:48 +0000 2017
HOJE MEU DIA TÁ SENDO MARAVILHOSOOOO NADA PODE ESTRAGAR
2195509948
gustavo
dreamtaylors
[]
910996512209072128
Thu Sep 21 22:37:48 +0000 2017
RT @enzo_riverplate: YA ME ESTÁ DOLIENDO LA GARGANTA. LA PUTA MADRE. #VamosRiver
3394555240
Milagros Chamblas
Chamblas_Mili
['VamosRiver']
910996512200646657
Thu Sep 21 22:37:48 +0000 2017
RT @kkuk300: حين يُلهمني الله الدعاء لشخصٍ ما
بشكلٍ مُفاجئ
ينتابني شعور بإن الله يُحبه
ويذّكّر عبادة بالدعاء له
أرغب أن أكون دعو… 
857628031392894976
💙 نايف 💙
Naaaaaif88
[]
910996512179671045
Thu Sep 21 22:37:48 +0000 2017
RT @B_B_Rey: esta fotografia pode receber amor? foi a 2a vez que tentei fotografar as estrelas.. https://t.co/ptYoflcQlX
2855163322
bibi
cheirasapum
[]
910996512188043264
Thu Sep 21 22:37:48 +0000 2017
RT @BMohamad68: الان تحميل السناب الحديث 

"التحديث الجديد" 2018

#سناْب_شات

#سَناب_عثمُان

من خلال الرابط التالي… 
890353092339937280
عاشق كتلوني
b11111bl1
['سناْب_شات', 'سَناب_عثمُان']
910996512188059658
Thu Sep 21 22:37:48 +0000 2017
RT @Peedrops: @Mazikeenzz entrejohnsons
893917304613949440
Anna Sun
Mazikeenzz
[]
910996512192307200
Thu Sep 21 22:37:48 +0000 2017
RT @iMukovhe: AKA x All I Know https://t.co/lIt9slYAOa
1069222388
*Landa  🌸
Landa_sifile
[]
910996512192245761
Thu Sep 21 22:37:48 +0000 2017
RT @Anahi: No tengo palabras 🙏🏻 gracias a todos. Así hoy el centro de acopio en el estadio en Tuxtla gtz. Chiapas nos necesita. https://t.c…
1284030248
Chiapa de Corzo
ChiapaOficial
[]
910996512179662848
Thu Sep 21 22:37:48 +0000 2017
RT @seokingpics: https://t.co/P28IL3WbL1
1049287572
okmafs
fck_lmjw5h
[]
910996512209035264
Thu Sep 21 22:37:48 +0000 2017
se eu ver eu vomito na hora https://t.co/dKqxNVus3r
975393068
evelyn.
milawrite
[]
910996512213274625
Thu Sep 21 22:37:48 +0000 2017
Insane BF Developer Tools #Utilities | #Mac App |1103426413| ****... https://t.co/kdNkutoErC #developertools
2799217323
Ada
adao0o
['Utilities', 'Mac', 'developertools']
910996512217452544
Thu Sep 21 22:37:48 +0000 2017
Mhm https://t.co/Kiewwqr9Ch
354647640
rudy
zerimarenid
[]
910996512213217280
Thu Sep 21 22:37:48 +0000 2017
RT @BMohamad68: الان تحميل السناب الحديث 

"التحديث الجديد" 2018

#سناْب_شات

#سَناب_عثمُان

من خلال الرابط التالي… 
879828357046833153
قلبي على قلبك
b131545bl
['سناْب_شات', 'سَناب_عثمُان']
910996512204890114
Thu Sep 21 22:37:48 +0000 2017
@KIZZfan_62 @DcDeplorable Did she really say that? She is so stupid
704461948952420353
Chip
troublehead99
[]
910996512188092416
Thu Sep 21 22:37:48 +0000 2017
RT @eng_uu: هذا الفهد من ذاك النمر ... 💛
#الاتحاد https://t.co/yKU2v48pBh
804696350
ѺσԀáч
odod666
['الاتحاد']
910996512213258240
Thu Sep 21 22:37:48 +0000 2017
RT @mayraestuvoaqui: ARROBA PAPÁ Y MAMÁ https://t.co/XX5FFXPjzH
1205962382
T H A L Í A 🐼
ThaliaLpz_
[]
910996512209063936
Thu Sep 21 22:37:48 +0000 2017
RT @pozitiffotolar: https://t.co/AxkZ6Nywza
333981930
Fatma Çiğdem Han
fatmacigdemhan
[]
910996512192176128
Thu Sep 21 22:37:48 +0000 2017
RT @uchujinyoutuber: 11月1日までにフォロー&amp;リツイートしてくれた方の中から抽選で1名様に現金150万を振込か書留でプレゼント。
フォロワー獲得広告費として僕は算出していますのでフォロワー獲得が僕の思惑だという事をここにはっきりと明記しときます。
広… 
3315535730
浦和命❗
sdr_reds_yupa
[]
910996512204664832
Thu Sep 21 22:37:48 +0000 2017
And I'm like wayment explore what Nigga the store. https://t.co/B52tkcgDb7
964411243
Queen_Yahna 😘👀👑
iyahnamook1
[]
910996512192294913
Thu Sep 21 22:37:48 +0000 2017
RT please New post on gigi-hadid-fashion Follow darlingwoman https://t.co/pfhniae8au
55606244
Natali Darling
buzzy_boom
[]
910996516378046464
Thu Sep 21 22:37:49 +0000 2017
RT @LYM_JoA: 뭐야아아
https://t.co/2staFRa5is https://t.co/y3SgeiTrMp
873726641385553920
《동현생축🎉》방토밈또(´ε`*)🍅
youngmin0_0
[]
910996516394823683
Thu Sep 21 22:37:49 +0000 2017
RT @vicjajaj: Talk is cheap, my darling.
739960260
Annarubi
Rubilopez35
[]
910996516373880832
Thu Sep 21 22:37:49 +0000 2017
RT @systemofadown: Daron, Shavo and John will be joining @LinkinPark in honor of @ChesterBe. Tickets on sale tomorrow.… 
2934865120
Alejandro (͡° ͜ʖ ͡°)
elmessias69
[]
910996516403257344
Thu Sep 21 22:37:49 +0000 2017
交通安全週間やもんなー
540752393
ダンゴムシ
MK21S8558
[]
910996516386480128
Thu Sep 21 22:37:49 +0000 2017
実はへそくりをしてる人の2割は100万~400万もの
へそくりをしてるっていうから驚き☆
789298751265386496
サラリーマン主婦のための節約術
sararisyuhusetu
[]
910996516394778624
Thu Sep 21 22:37:49 +0000 2017
RT @JUNGKOOKcokr: 170922 햇살이 #정국 @BTS_twt https://t.co/OHrvxSXK9I
2717118255
esther
02strwbrry
['정국']
910996516378001408
Thu Sep 21 22:37:49 +0000 2017
RT @VShock1230: 170922 뮤뱅 출근 
김석진  ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ https://t.co/4WmcjLbGSE
771460132613988352
🍓
bratguk
[]
910996516373794817
Thu Sep 21 22:37:49 +0000 2017
RT @takizawa613: 大きな動き。サイト、強いメッセージ性があり必見です。朝日新聞朝刊には、見開きで関連する広告も出る予定と聞いています。
元SMAPの3人、公式ファンサイト「新しい地図」開設:朝日新聞デジタル https://t.co/wmbWr4QAaT
2453003101
ぴーすけ
tai_p_chan
[]
910996516403163136
Thu Sep 21 22:37:49 +0000 2017
RT @overrateddre: facts https://t.co/rMlYvcxKfZ
166044542
Anthony
AnthonyH21
[]
910996516386381824
Thu Sep 21 22:37:49 +0000 2017
RT @951013_jimin: 170921 #컬투쇼출근 #방탄소년단 #BTS #지민 #JIMIN @BTS_twt 지민이는 항상 이쁜데...보정...왜 이렇게 나를 힘들게 하는지 😂😂💕 https://t.co/SRXNLKMZqF
716125969312907264
제빙❄
jsc7062141125
['컬투쇼출근', '방탄소년단', 'BTS', '지민', 'JIMIN']
910996516386549760
Thu Sep 21 22:37:49 +0000 2017
El quince de octubre tengo un quince lpm espero llegar a todo #GonzaGravanoEnFans
3413998211
Giuli. 💘✊🌈
gonzaxbian_
['GonzaGravanoEnFans']
910996516411723777
Thu Sep 21 22:37:49 +0000 2017
RT @VibeDePobre: Se dinheiro não te traz felicidade, me dê o seu dinheiro e seja feliz.😎
855576372789616641
F A F Á❤👊
Fafazinha08
[]
910996516378222592
Thu Sep 21 22:37:49 +0000 2017
RT @gonzalezangel26: Al entrar en sociedad deben guardase las llaves del corazón y metérsela en el bolsillo ,los que las dejan en su sitio…
151969948
Andrea
andreamonzonr
[]
910996516386562048
Thu Sep 21 22:37:49 +0000 2017
RT @alfarag_: @abosaad82 @0_q8m @alarbeedfaraj نعم .. استجواب #وزير_الصحة غير موفق وغير مستحق
271396690
خالد العسكر
Khalidcnn
['وزير_الصحة']
910996516374024192
Thu Sep 21 22:37:49 +0000 2017
RT @chad_novak4: I'm a:

⚪️man
⚪️woman
🔘college student 

seeking:

⚪️men
⚪️women
🔘air conditioning
1601724560
Kirstynn
K_krupp24
[]
910996516399194112
Thu Sep 21 22:37:49 +0000 2017
୨୧ Dear sunshine ୨୧ 

No words can explain
how THANKFUL I am
to have you in my life ❣

will you FOLLOW me?
➳ilysm @Harry_Styles
—12318
520517766
sof isnt seeing H
94kingharry
[]
910996516382310401
Thu Sep 21 22:37:49 +0000 2017
Tried sliding into @justinbieber 's DM's as if he'd even notice. LOL
770868608452866048
Taylor Ashley
TaylorAParks327
[]
910996516386598913
Thu Sep 21 22:37:49 +0000 2017
Balgat İkinci El Eşya Alan Yerler 0535 778 45 69 - https://t.co/bPoSMsmWSr @dailymotionTR aracılığıyla
909350029848170496
İsmail Aözdemir
ozdemirismail06
[]
910996516390785024
Thu Sep 21 22:37:49 +0000 2017
RT @aintblazin: tou a precisar de álcool para afogar as  mágoas
878635520879939585
Fuck feelings
RafaelaSofia19
[]
910996516378202112
Thu Sep 21 22:37:49 +0000 2017
@digato_dotrem Ta perto, ta perto!!
2889401363
Stefani.
preta_teffa
[]
910996516399144961
Thu Sep 21 22:37:49 +0000 2017
RT @malakhossamB: #NewProfilePic https://t.co/gQxBK6nwBd
819618384136519680
⭐
mnegmx
['NewProfilePic']
910996516386611201
Thu Sep 21 22:37:49 +0000 2017
اللهم لك الحمد كما تحب وترضى https://t.co/3LN1AULCwG
873627967401984002
احمد
quoor1154e
[]
910996516386623488
Thu Sep 21 22:37:49 +0000 2017
RT @NagyKriszti9: https://t.co/0HyqNzCOTC
4894852078
ARGOM♠
ARGOM_CORNEADOR
[]
910996516378218497
Thu Sep 21 22:37:49 +0000 2017
RT @Khomene1: ارجع لا اصلك طاجيكي لانك لم تخلق قطري بل اخذتها مقابل تقبيل اقدام الاسرائيلى عزمي بشاره https://t.co/3q0QnSNlJ0
2385997953
M0hnaAladwani.🇸🇦
M0hnaAli
[]
910996516407582721
Thu Sep 21 22:37:49 +0000 2017
@TheLeadCNN @CNN Taliban? 😂 Taliban was founded by Bush.
1144134452
♻ Саня
AlexAdvert
[]
910996516403367936
Thu Sep 21 22:37:49 +0000 2017
RT @nickreeves9876: Tory, DUP &amp; UKIP MEPs voted against EU plans to clamp down on tax-avoidance https://t.co/P5sODCO4Qj
#StopBrexit #Brexit…
769849468200116224
Is anybody there?
gudnameztaken
['StopBrexit', 'Brexit']
910996516378152960
Thu Sep 21 22:37:49 +0000 2017
RT @AbuThamer1927: الحمد لله على نعمة الاتحاد
ليت لاعبينا يستشعرون قيمة هذا النادي العظيم

https://t.co/M8eq12irZJ
346699858
#1 ayman Alheani
aymanahmed11
[]
910996516377993216
Thu Sep 21 22:37:49 +0000 2017
RT @bluerose970901: 170922 뮤직뱅크 출근길

💙💙💙 #정국 #JUNGKOOK #BTS #방탄소년단 
@BTS_twt https://t.co/dC816xiJTX
736471802
naomi; semi ia
dimpIeIive
['정국', 'JUNGKOOK', 'BTS', '방탄소년단']
910996516394995712
Thu Sep 21 22:37:49 +0000 2017
Happy anniversary Sean &amp; Whitney https://t.co/DMsLAQVpRE
43342385
Amie St.Jean Bed and
amiestjean
[]
910996516407513089
Thu Sep 21 22:37:49 +0000 2017
@politicalmath Funny how quick the good intentions crowd who claims to like data turns on it when it doesn't like the data.
3011729306
Adso of Melk
PalimpsestMan
[]
910996516399132673
Thu Sep 21 22:37:49 +0000 2017
RT @_wildcatss: Las cosas pasan cuando tienen que pasar https://t.co/C8wzlilTxc
163288842
Legally Blonde
kartorimc
[]
910996516386541568
Thu Sep 21 22:37:49 +0000 2017
Source: Love Lab https://t.co/arEln5eQsV
4228746946
Ace (Animated) Bot
AceAnimatedBot
[]
910996516390744064
Thu Sep 21 22:37:49 +0000 2017
🔴عرض خاص🔴
.
(اديمار رجالي)
درجة اولى👍
ساعه اديمار⌚️
➕
قلم اديمار🖊
➕
كبك اديمار🎗
علبه فخمه🎁
السعر470ريال
الشحن أوالت… https://t.co/hbRBDf1yX1
3382257304
.متجر ملكة الاناقه
tt2rt
[]
910996516394823682
Thu Sep 21 22:37:49 +0000 2017
落書き帳4冊目もうすぐ終わる🙂 https://t.co/Tth5Z2rpRS
863658070055845888
いっち
icchi6262
[]
910996520593276929
Thu Sep 21 22:37:50 +0000 2017
RT @koreatourism: Does your dream #RomanceKorea trip look something like this? 😍
Create memorable moments with your special someone a… 
4114342993
らぱん
dcjca3g
['RomanceKorea']
910996520601657344
Thu Sep 21 22:37:50 +0000 2017
RT @akiko_lawson: 5日間連続!毎日抽選で【1万名様】に
\ #Lチキチーズ無料プレゼント /
フォロー&リツイートで、9/23まで総計【5万名様】に
#Lチキチーズ がその場で当たります(^^)
3日目は9/22 10:59まで!#ローソン… 
746973290028138498
きのこニョキニョキ
6AFBrH1EJBMepju
['Lチキチーズ無料プレゼント', 'Lチキチーズ', 'ローソン']
910996520593375232
Thu Sep 21 22:37:50 +0000 2017
RT @spacejinyoung: Jinyoung | NGC 5584

#PrinceJinyoungDay ☆ https://t.co/1JuZ75Qaw6
738767681487147010
My blue #7for7
nyoung22994
['PrinceJinyoungDay']
910996520576573441
Thu Sep 21 22:37:50 +0000 2017
RT @kumabukuro: @ren2rain 海外の3Dアニメだけどアクション超かっこいいゾ。とりあえずトレーラー見るよろし https://t.co/wWHEYBdRle
2940893822
vianno
vianno_ch
[]
910996520572297218
Thu Sep 21 22:37:50 +0000 2017
RT @dnjswo_santa: 💡 우원재 스트랩 일반 입금 폼 💡

✔️ 반드시 입금 후 작성해주세요

✔️ 원재군에게도 전달예정입니다

✔️ 입금 기간은 09.17~09.20 입니다

💡입금폼 :… 
903907977035268096
woo1재
1_jae1
[]
910996520580853760
Thu Sep 21 22:37:50 +0000 2017
RT @rdemon1984: En junio celebrando el doblete histórico, en agosto las Supercopas y ahora matando al equipo. No os entiendo a algunos.
150358946
iñigo delgado
inigodelgado
[]
910996520601665536
Thu Sep 21 22:37:50 +0000 2017
@kinsexual I MEAN I WAS LOWKEY ON STAN TWITTER BACK THEN BUT I WAS NEVER *THAT* UWU
4353765627
that remisa bitch
kinphobes
[]
910996520572297216
Thu Sep 21 22:37:50 +0000 2017
@dnk_sun でんきゅうさんんんん、制作お疲れ様でしたー🙌スペースちょっと近いので嬉しいです.。゚+.(・∀・)゚+.゚でんきゅうさんとぬんさんに会いにスペース伺います、よろしくお願いします(´&gt;ω∂`)ちゅれしまちゃん達も死ぬ気でゲッツしに行きます(*•̀ᴗ•́*)و
128563819
きあら@9/24 か44
kkkiiaarraa
[]
910996520605904897
Thu Sep 21 22:37:50 +0000 2017
RT @i_moo_knp: おめでとう〜〜㊗️🎉🎂👏😊

#朔間凛月生誕祭2017 https://t.co/tgWiKj1IGJ
3190532101
あっきー
NO4614
['朔間凛月生誕祭2017']
910996520572522496
Thu Sep 21 22:37:50 +0000 2017
RT @labeasanchez: No se trata de izquierda o derecha, conversamos con todos. Distinto es validar a autoridades de una dictadura que mató y…
310504796
Rafael Cavada
rafa_cavada
[]
910996520601837568
Thu Sep 21 22:37:50 +0000 2017
RT @diegoluna_: Muestras de apoyo por donde sea!!
Me dieron ganas de llorar... https://t.co/P1PlKdEpio
861786964483346432
Guadalupe Znteno🇲🇽
GuadalupeZnteno
[]
910996520593276928
Thu Sep 21 22:37:50 +0000 2017
RT @eri_crazy4: 新しい地図。

N,E,W,S,MAP。

NEWSMAP!!!!!

#新しい地図NAKAMA 
#新しい地図 
#稲垣吾郎 
#草彅剛 
#香取慎吾 https://t.co/pDeSwV5eOf
878633183952031744
Still U 924
924Still
['新しい地図NAKAMA', '新しい地図', '稲垣吾郎', '草彅剛', '香取慎吾']
910996520568344576
Thu Sep 21 22:37:50 +0000 2017
Quiero ganar el #iPhoneXGratis que sortean @MarcianoPhone y @Apple5x1 https://t.co/qYPmAtySoR
1132562725
Christian Torres
KantusTorres
['iPhoneXGratis']
910996520597516288
Thu Sep 21 22:37:50 +0000 2017
RT @yestesnigga: 32 años después y dicha frase aún sigue vigente. https://t.co/yYfV7HjkF7
4027660874
m♡
marianacavja
[]
910996520593444864
Thu Sep 21 22:37:50 +0000 2017
RT @heavenlyyoongs: It’ll always be BTS and Armys and it’s going to stay that way. I’m tired of yall trashing us and our boys for fame.
614737025
❤LOVE ❤ YOURSELF❤
rmkopackorox
[]
910996520585109505
Thu Sep 21 22:37:50 +0000 2017
RT @mellifluousJK: 170922 @BTS_twt #정국 #JUNGKOOK https://t.co/3B8X8gWvAY
820038253
kata🐰
katftjeon
['정국', 'JUNGKOOK']
910996520589250561
Thu Sep 21 22:37:50 +0000 2017
RT @v1torlima: pode parecer bobeira - mas hoje eu consegui, depois de vários anos, tirar a camisa pra entrar numa piscina e eu tô… 
2474559037
Maria
pipocs19
[]
910996520568344577
Thu Sep 21 22:37:50 +0000 2017
Mil docietos cuarenta y uno #ReggaetonLento #HeyDj #JeronimoCantillo #KCAColombia
384598493
aylin sierra
aylinsaumett
['ReggaetonLento', 'HeyDj', 'JeronimoCantillo', 'KCAColombia']
910996520576733184
Thu Sep 21 22:37:50 +0000 2017
SÓ CABAÇO NESSA ZAGA
3011476372
série B
cocigror
[]
910996520585003008
Thu Sep 21 22:37:50 +0000 2017
RT @i7i2l: ليھ درب اللقىٰ دآيم طويل
ودرب المفارق دآيم مختصر ؟"💛".
869044288293920768
Ꮥ⁷ ム
l2ii9
[]
910996520601866241
Thu Sep 21 22:37:50 +0000 2017
RT @GNCCanada: RT &amp; FOLLOW us. MUST TAG 5 friends in RT for a chance to #win 1 of 3 PVL: (ISO Sport Whey, 100% Pure BCAA &amp; 100% Pu… 
559944659
Andrea
Zac_maniac
['win']
910996520576708609
Thu Sep 21 22:37:50 +0000 2017
@JimKuther Drain their swamp
867128530982842369
Fran Crespo
Texasnana05
[]
910996520606027777
Thu Sep 21 22:37:50 +0000 2017
@PrinceOfGinge Ok the last part was false lol
274711512
Aegon Targaryen 🐉
RaphaelIoannou1
[]
910996520601833472
Thu Sep 21 22:37:50 +0000 2017
RT @S_Cienfuegos_Z: No vamos a suspender la misión de búsqueda y rescate que se nos ha encomendado, hasta encontrar al último de los sobrev…
357532266
Sr. Vargas
AJVargasC
[]
910996520601874432
Thu Sep 21 22:37:50 +0000 2017
RT @BTSglobal_news: 170921 [FOTOS] #BTS en camino a Music Bank.
#JIN https://t.co/ktZ7CLO8bC
119023615
Kari Jonas Lovato
Kari_SweetBlack
['BTS', 'JIN']
910996520589242368
Thu Sep 21 22:37:50 +0000 2017
RT @CelopanYT: ❤️muy buenas noches a todos❤️ os quiero Patitos 🐥
4893827729
pilar |-/17deOctubre
dislexicelo
[]
910996520606027776
Thu Sep 21 22:37:50 +0000 2017
RT @ashleyandsun: you're tellin me i can come home wasted &amp; rip open a popsicle to prevent my hangover now https://t.co/1c0Oaoe8dM
358461340
Kennedy Nelson
kenniliz2014
[]
910996520601825280
Thu Sep 21 22:37:50 +0000 2017
RT @JorgenFaxholm: How many Commissioners will be in Firenze for Theresa May's talk?
0, I heard.
What does that say?
Stay home, Mrs. M… 
76684146
Truth?
Anorakian
[]
910996520576671744
Thu Sep 21 22:37:50 +0000 2017
@maldonadoooo_ No jajajaja pero me voy a operar los ojos la verdad
3299829307
marvin miranda
meme070214
[]
910996520572350464
Thu Sep 21 22:37:50 +0000 2017
#TrueHappinessIs ... the final divorce papers .... https://t.co/xyDz47a24Q
3585139694
The Sun Mama
thesunmama
['TrueHappinessIs']
910996520597639169
Thu Sep 21 22:37:50 +0000 2017
vai correr atrás de outro rabo de saia... https://t.co/6tJi3PkNQS
2596582376
CLEDIMAR
MCLEDIMAR
[]
910996520585105408
Thu Sep 21 22:37:50 +0000 2017
@NairbELMNOP https://t.co/qeNxov3n9Q
1562013890
Phammer
MCPhammer10
[]
910996520568102912
Thu Sep 21 22:37:50 +0000 2017
RT @touhutin: えぇ!えぇ!私はこの武器を絶対に無くしません‼︎ https://t.co/mkvitrCo9D
776362810645188608
深海のうみくん☪︎
Sinkai_umikun
[]
910996520585089024
Thu Sep 21 22:37:50 +0000 2017
@NicolasMaduro @TareckPSUV @gestionperfecta @JauaMiranda @jaarreaza   @HectoRodriguez @VillegasPoljak &lt;@POTUS @VP… https://t.co/WANkSyTIQe
2374488835
Daniel Rivero
DanielR485
[]
910996520597692416
Thu Sep 21 22:37:50 +0000 2017
I'm at ぇくれハウス in 広島市, 広島県 https://t.co/r0LNP5nWio
951568081
ぇくれ
shirley__0720
[]
910996520568225792
Thu Sep 21 22:37:50 +0000 2017
RT @kookbeingextra: he looked so cute &amp; happy during this performance :’) https://t.co/rBOZvVXoP8
1476224966
ㅤ ㅤ ㅤ: ♡
mikayuitsu
[]
910996524762464256
Thu Sep 21 22:37:51 +0000 2017
RT @curo002: レンジで温めた肉まんが煉獄みたいな熱さをしていてホッ!ホッ!ホッ!と手の上でお手玉してたら猫のトイレに飛んでいった。 https://t.co/oNHUZQOR2K
4738248372
千幸のゲーム垢
birdcage_lll
[]
910996524762488832
Thu Sep 21 22:37:51 +0000 2017
RT @hemlockspidey: Trixie Carter • American Dragon: Jake Long 
- 1/2 of Jake's best friends 
- skater 
- helps protect the magical wor… 
820545341061664768
aki | DNA
kngsucjin
[]
910996524787576832
Thu Sep 21 22:37:51 +0000 2017
RT @uykioPh: 문며들었네ㅋㅋㅋ
文대통령 '핵추진 잠수함' 교두보 마련…트럼프 "터프해서 좋아" https://t.co/ao1ADjcClz

트럼프 대통령은 문 대통령의 손을 잡으면서 '아주 좋다'고 했다. 웃으면서 '문 대통령이 터프해서 좋…
274382238
Pray for Korea
helicom1204
[]
910996524795957248
Thu Sep 21 22:37:51 +0000 2017
RT @Rosesinblue1: Truly Inappropriate Trump Photo Gone Viral
https://t.co/sAbw1GPFVa
822359131575173120
jonsan
isslovelife9
[]
910996524800159744
Thu Sep 21 22:37:51 +0000 2017
RT @hersintros: here’s where they were making fun of jungkook’s pronunciation https://t.co/N2ubFIxq08
1301858126
承 'HER' DNA
Bellabobis
[]
910996524779184128
Thu Sep 21 22:37:51 +0000 2017
RT @tekina_osamu: 外交の安倍の実績。ロシアには三〇〇〇億円を貢がされた挙句、共同開発で主権問題を棚上げ。北方領土はロシアの法の下にあるという話になってしまった。この件に関して「日本の主権を守れ」と論陣を張ったのは共産党と『赤旗』ですよ。安倍ウヨの頭の中ってどう…
578830111
Isamu Wada
wada136
[]
910996524800262144
Thu Sep 21 22:37:51 +0000 2017
RT @MerlinNewtonSr: It makes total sense.  Democrats are still in charge of the Justice Department and Jeff Sessions is doing nothing a… 
881653561397960708
Michael Walker
Michael05906
[]
910996524791873537
Thu Sep 21 22:37:51 +0000 2017
RT @Gissun_bts: 그리고 드디어 밝혀진 일곱개 기획사의 러브콜
중에 빛나는 빅히트!!!!!!!!!!!!!!!! https://t.co/43wB84GgJw
846638535620857856
💟전노츄💟
BTS10542217
[]
910996524791873538
Thu Sep 21 22:37:51 +0000 2017
อิเหี้ย พรี่อง หนุไม่ไหวกับพี่แล้วนะคะT_T
2927796865
(ong)
saydprlive
[]
910996524783554560
Thu Sep 21 22:37:51 +0000 2017
RT @BBCR1: "I loved when @The1975 did What Makes You Beautiful" - us too, @Harry_Styles 😍

Watch more on The Live Lounge Show,… 
123330760
M.
georgeisabae
[]
910996524800163840
Thu Sep 21 22:37:51 +0000 2017
《其は摂理の円環へと帰還せよ・五素は五素・象と理を……》

#rokuaka
4830769056
セリカ=アルフォネア
Celica__world
['rokuaka']
910996524779237376
Thu Sep 21 22:37:51 +0000 2017
サンドウィッチマンのキュレーションアプリが出来ました!
https://t.co/612db1Psm6
#サンドウィッチマン
732516293237047296
サンドウィッチマン ニュース
sand_news_sp
['サンドウィッチマン']
910996524800212992
Thu Sep 21 22:37:51 +0000 2017
Severe voltage fluctuatation due to cable fault since yesterday 6:00pm...कोई सुनवाई नहीं । महोदय कृपया संज्ञान लें… https://t.co/tbczg9LfCD
786215204
Dr. Praveen Singh
drprav1s
[]
910996524779401217
Thu Sep 21 22:37:51 +0000 2017
RT @toniartero: No puc dir bona nit per que hi ha presoners polítics a Catalunya, Persones innocents. Amb vosaltres. 

#LlibertatDetinguts
69116986
Adolf Descalzi
sinzapati
['LlibertatDetinguts']
910996524783501314
Thu Sep 21 22:37:51 +0000 2017
RT @naomirdzzz: i was real happy with my outfit, hair, and makeup today until i walked outside ☔️
4274339834
amy🌸✨
amyboo_xx
[]
910996524775206912
Thu Sep 21 22:37:51 +0000 2017
https://t.co/fxyOMklMRx
2158093257
soloxeps
soloxeps
[]
910996524770955264
Thu Sep 21 22:37:51 +0000 2017
RT @VictorCitou: nas quartas usamos rosa https://t.co/oKmqVjxyRu
540816006
mc disgraça
anamilfont
[]
910996524783620096
Thu Sep 21 22:37:51 +0000 2017
Me dio mucha tristeza ver la casa de mi madrina a punto de ser demolida. 😔
98528964
Tania H. Galdámez
albertaniaa
[]
910996524766810112
Thu Sep 21 22:37:51 +0000 2017
And now, for something completely different:

https://t.co/9IQMcNJoge
155590854
Buffetkhor
MyDixonCider
[]
910996524766724096
Thu Sep 21 22:37:51 +0000 2017
ربي أعوذ بك من الكسل وسوء الكبر 
♻️ https://t.co/iZGfL53y3I
328935211
تركي سالم
torki1994
[]
910996524800331776
Thu Sep 21 22:37:51 +0000 2017
@jsoares06 @2fatforthishit @ricspacer47 O soares percebe me 🙏🏼
981415028
Pascoal
MrPascoalite
[]
910996524771020801
Thu Sep 21 22:37:51 +0000 2017
RT @eslames22: مبحبش استخف بزعل او بكلام حد مهما كان حتي لو من جوايا شايف ان الزعل او الكلام على حاجه تافه، بس طالما مهم بنسباله، مينفعش يب…
722117374531477508
lobna 🌸
lobnawhba0
[]
910996524796170242
Thu Sep 21 22:37:51 +0000 2017
RT @futtmais: Ronaldinho sempre será ídolo onde passou. https://t.co/M4ywjR9WIX
816107800644452352
Yuri
YuriSantosApc
[]
910996524766818304
Thu Sep 21 22:37:51 +0000 2017
Rs https://t.co/i47wjkrPaj
285126207
Gabriella
KillaG_
[]
910996524766658560
Thu Sep 21 22:37:51 +0000 2017
RT @Rosesinblue1: Truly Inappropriate Trump Photo Gone Viral
https://t.co/sAbw1GPFVa
807208646568341504
megha rani
itsmeghatweet
[]
910996524796121089
Thu Sep 21 22:37:51 +0000 2017
RT @britainelects: Public Satisfaction / Dissatisfaction with...

T. May: 37 / 54
J. Corbyn: 43 / 46
V. Cable: 30 / 31

via @IpsosMORI
630647847
Cas (hates the GOP)
hisfanatic
[]
910996524791996416
Thu Sep 21 22:37:51 +0000 2017
@iN3ymovic اذكرها بالعيد ابثرت امنا فيها 😂😂😂
3547473073
قتيبة المطيري
Detective_Ahmed
[]
910996524791947264
Thu Sep 21 22:37:51 +0000 2017
RT @devecihukuk: Avukatın yoksa cmk masasından sana ücretsiz avukat veriliyor. @omerturantv :))

Merak etme yasal hakkın
 :) 
Bakarsin ben…
526110917
LETONYA MUHTARI ®
mehmetcheliklv
[]
910996524796084225
Thu Sep 21 22:37:51 +0000 2017
RT @FotosDeFatos: Pai sentado em uma cadeira segura uma arma para proteger sua família da onda de violência contra negros, em Shady G… 
870966751
Deleon Luiz
DeleonLuiz
[]
910996524800335872
Thu Sep 21 22:37:51 +0000 2017
@ClaraLago1 tu puta madre
725707424
Antonio Merlos S.A.
antonimerlos11
[]
910996524791926784
Thu Sep 21 22:37:51 +0000 2017
RT @lucadonatild: 😚⚽ #LevanteRealSociedad https://t.co/uK6zHyMl9y
283676548
jorge martinez
JorgeMartSil
['LevanteRealSociedad']
910996524775165952
Thu Sep 21 22:37:51 +0000 2017
RT @DailyLesbianVid: https://t.co/q3LZCF9c4R
3108388049
tallman826
tallman82600
[]
910996524783546368
Thu Sep 21 22:37:51 +0000 2017
se alguém vier falar mal de mim, me descrever um homem ruim, não vai ser real, é conspiração p acabar com a nossa relação!!
709655921
Fernanda Barros
barrossfe
[]
910996524800335873
Thu Sep 21 22:37:51 +0000 2017
RT @_RenKoR: Nose a que esperan las chicas... https://t.co/zlDCBwI3zQ
750124812467572736
GA-Joel
JoeelCOD
[]
910996524791975936
Thu Sep 21 22:37:51 +0000 2017
RT @maritobaracus: https://t.co/S74H0RkmJ6
766796253430624257
Lyra Firell
StarFirell1
[]
910996524796141569
Thu Sep 21 22:37:51 +0000 2017
https://t.co/csgkrXuV44
78456076
Patt
pattbp_
[]
910996524771004416
Thu Sep 21 22:37:51 +0000 2017
Welcome to ECB @ToniiSala! https://t.co/3QJPSVvA9P
4835471192
East City Bookshop
eastcitybooks
[]
910996524770975744
Thu Sep 21 22:37:51 +0000 2017
RT @rosoidae: nj: [to jungkook] ur good looking
jin: [in the back] why didn't he tell me i'm good looking IM WORLDWIDE HANDSOME
https://t.c…
4187596889
althea
ksoofficials
[]
910996524800323584
Thu Sep 21 22:37:51 +0000 2017
RT @ErrolSpenceJr: Hall of Famer, went out on top as the P4P king. Hope to be able to do the same someday. Salute bro. https://t.co/FIEzU9h…
295667827
Mike 🇭🇹🤘🏾
_YourLifeNeeds_
[]
910996528969302016
Thu Sep 21 22:37:52 +0000 2017
morningsss
746634503897026561
Josh
Jshlgrna
[]
910996528969293824
Thu Sep 21 22:37:52 +0000 2017
RT @ensemble_stage: 本日は高崎さんのお誕生日、キャスト&amp;スタッフ一同、サプライズ(?)でお祝いさせていただきました!
高崎さん、おめでとうございます!!

明日からの神戸公演、皆様のご来場お待ちいたしております!!

#あんステ https://t.co/c…
793698862812700672
めめこ
cuq_8
['あんステ']
910996528969289733
Thu Sep 21 22:37:52 +0000 2017
RT @bourne_angel: @DGraziel @theBatt218 @ALDub_RTeam @AlDubBigPemily @ALDubFTnQT @TropALDUB @ALDUB_inARTeam @jophie30 @imcr8d4u… 
432769150
Shorty116
leah_roz
[]
910996528969408512
Thu Sep 21 22:37:52 +0000 2017
@crissles Whatever you did to feel better, I needa know because whatever I have is hella stubborn 😔
151319532
Tomoko Perez
Tomoshiga
[]
910996528986177537
Thu Sep 21 22:37:52 +0000 2017
RT @untitledyixing: i fixed something https://t.co/EDokvmnVKQ
711184535661096960
ajeng
qtsexing
[]
910996528981934080
Thu Sep 21 22:37:52 +0000 2017
@tuji_bot おはようございます辻尚樹さん。よく眠れました?
425701147
夏目章規
natsume_b_bot
[]
910996528956817408
Thu Sep 21 22:37:52 +0000 2017
@marry_me_ryu 헉 찾아와주셔서 감사드려요 ㅠㅡㅠ 제가 찾아갔어야하는데..,, 잘부탁드려요 솜솜님 ㅠㅠ❤
887567341977878528
개환
fromrjy
[]
910996528986169344
Thu Sep 21 22:37:52 +0000 2017
@kagami_PSO2 おはよぅ(っ ॑꒳ ॑c)
791464718611288064
寝落ちユーナ
Yuna1116_pso2
[]
910996528956809216
Thu Sep 21 22:37:52 +0000 2017
RT @Xatz: 「オタク以外の趣味」言いますけどオタクが趣味やると車やっても裁縫やっても工作やっても大工やっても登山やっても写真やっても全部オタクになりますよ。
2422866708
リッキー@番長
r92113108
[]
910996528982118400
Thu Sep 21 22:37:52 +0000 2017
RT @Mark_Beech: Morrissey single "Spent the Day in Bed" heralds new studio album "Low in High School" out November 17 @officialmoz https://…
3403200924
Big
DjayBBgi
[]
910996528969416704
Thu Sep 21 22:37:52 +0000 2017
RT @aparicni: Me quiero enamorar ☹️
117179217
Jessica Soto
JessicaSotto
[]
910996528990371840
Thu Sep 21 22:37:52 +0000 2017
I would take care of you by bringing you a chicken soup for you and then wrap our bodies together around the blanke… https://t.co/9g2Eyw3apo
1420341884
JEON
woernwo
[]
910996528977842177
Thu Sep 21 22:37:52 +0000 2017
RT @OztheWiz95: "Its like animal planet my dawg... But just sad."

-@Young__Picasso
2830758319
Secret Life
CALLYOULATERR
[]
910996528973541377
Thu Sep 21 22:37:52 +0000 2017
RT @HotSex2560: ใครชอบแนวเถื่อนๆแบบนี้ นัดได้ครับ ยสตน. https://t.co/kZdKamjX2r
2733825385
boy victory
9boyvictory
[]
910996528969502720
Thu Sep 21 22:37:52 +0000 2017
RT @Anfmamba12_: Dbo is trending on Spinrilla ☝🏾 !!
2207370854
PRESIDENT 💯
_pink_lovve_
[]
910996528982044673
Thu Sep 21 22:37:52 +0000 2017
kkk um gj não aprende
2790522776
F.Milly
Whagwhaan
[]
910996528960905216
Thu Sep 21 22:37:52 +0000 2017
RT @PHILHEATH: I won't lose. To play out this question I'd say to win you have to know what it truly feels like to lose. I have lo… 
1493629278
Death Cube
robow1973
[]
910996528977907712
Thu Sep 21 22:37:52 +0000 2017
RT @davidbowie_news: David Bowie, 1999 by Mark Seliger. https://t.co/FpuLqrVkj9
486602904
Shai
TH_Shwa5i
[]
910996528990433282
Thu Sep 21 22:37:52 +0000 2017
RT @FAIRImmigration: .@SenBillNelson wants to fund dangerous sanctuary cities — cities that promote lawless behavior. It’s time to #EndSanc…
145301122
me
tiedownguy
[]
910996528994455552
Thu Sep 21 22:37:52 +0000 2017
いまTL みてビックリ!!
ファンクラブできたの?
どうやって入会?
混みあって登録できないって?
把握できない😱💦

#パリピア 
#新しい地図NAKAMA
4803488114
💓📎📎マコ📎📎📎💓
kRPgYnowDCjk2n6
['パリピア', '新しい地図NAKAMA']
910996528982085633
Thu Sep 21 22:37:52 +0000 2017
RT @ThomasSanders: Mood 💬 (W/ @DomGoldOfficial) https://t.co/Dzu5V46xGv
837914698469212160
William wills
jayboom25
[]
910996528960962560
Thu Sep 21 22:37:52 +0000 2017
【RT】セフレ募集中です。よろしくね リフォロー  出会い募集中(^∇^)メル友、リア友募集! あとポケモンGO友達募集中♪条件などはプロフィール見て♪
767653406915690497
あゆ♀ 金欠中……
himikonnns
[]
910996528981929984
Thu Sep 21 22:37:52 +0000 2017
配信なう!福岡のメイドアイドル鹿目ろあちゃんを応援しよう♪ 只今博多駅看板モデルイベントに参加中!
#福岡 #博多 #メイド #アイドル 
https://t.co/IjbQi6suS4
859477350995578880
とおる
v5RLINjeGQ9sAX9
['福岡', '博多', 'メイド', 'アイドル']
910996528990388224
Thu Sep 21 22:37:52 +0000 2017
@GrutmanE @Amber_Marshall You will have to get in line as there are many of us that would love to meet her.
47999250
Tony Perinich
peratp
[]
910996528990507008
Thu Sep 21 22:37:52 +0000 2017
RT @ferrocarriloest: #Basquet Hoy 21 hs en La Bombonerita x el #Súper20 de @LigaNacional arranca la ilusión! #Ferro visita a #BocaJrs TV… 
468741908
San Torchia
Dontorchia
['Basquet', 'Súper20', 'Ferro', 'BocaJrs']
910996528965275649
Thu Sep 21 22:37:52 +0000 2017
RT @Lanakila000: @Thomas1774Paine Real Oct surprise. https://t.co/wv1qAK0lDm
724386879924277249
Deplorable Valerie
Allybobba14
[]
910996528973647872
Thu Sep 21 22:37:52 +0000 2017
@reem_m2030 للصور
609455779
:):مستر بربر‏ه #بيظه
Brbrah1
[]
910996528969519104
Thu Sep 21 22:37:52 +0000 2017
@HappyHappyBeans Sad that you harbor so much animous. Hate, vitriol and other negative feelings can adversely affec… https://t.co/pIBY74lmKa
15823438
Trudy Bentley Rech
Tbrech1
[]
910996528986288128
Thu Sep 21 22:37:52 +0000 2017
RT @vignamimundo: Mi inicio fue "goool" sigo a las personas correctas, sin dudas
757750014177312768
Anii
Gravayar_isLife
[]
910996528977842178
Thu Sep 21 22:37:52 +0000 2017
RT @HectoBeTweetin: I'll kill a man if he ever lay a hand on my momma https://t.co/XzJSvRXmIe
4853307538
AK
nothingspec88
[]
910996528973697024
Thu Sep 21 22:37:52 +0000 2017
RT @Assoris_Anons: Los años perdidos no se recuperan nunca, que triste que muchos jóvenes guerreros estén viviendo su juventud tras las rej…
429359905
Alejandro Rojas
Chinosky17
[]
910996528977842176
Thu Sep 21 22:37:52 +0000 2017
RT @ponchohd: 60 millones??? ES UNA BROMA?!?!?

Pero que tal su bono navideño de 420 millones de pesos?!!!!!!

🐀 https://t.co/tPoshiSADd
272260369
MARLON.🏅
moisesmj96
[]
910996528973656064
Thu Sep 21 22:37:52 +0000 2017
@wuisftchildren já podes
847185891114307585
🌊
ima_wanderess
[]
910996528981934081
Thu Sep 21 22:37:52 +0000 2017
RT @PatamaPost: I'm sorry I ever dragged you into my twisted, messed up world. I just thought you might be the one to pull me out of it..
825623641777856512
amierrareeyal
AmierrareeyalWP
[]
910996528961134593
Thu Sep 21 22:37:52 +0000 2017
@didmnur Böyle açık elbise giyerek erkeklerin ilgisini çekebileceğini düşünüyorsun degilmi :)
891666139041976320
Serkan Korkmaz
serkan__155
[]
910996528982093824
Thu Sep 21 22:37:52 +0000 2017
Found a Transponder Snail!
What's inside? Mystery barrel's shocking secret!!
https://t.co/Z0BRBT4MTv #TreCru https://t.co/Cy0R32FFQU
713434569207361536
Aoi Bonny
AoiBonny
['TreCru']
910996528981872640
Thu Sep 21 22:37:52 +0000 2017
おはゆゆゆ https://t.co/75BSsjwpgM
827079095095660544
サキ(´ω`*)
pin_kina
[]
910996533151068160
Thu Sep 21 22:37:53 +0000 2017
RT @paperrrclip: Mario Kart for iMessage should be a thing
1052043444
m👑
_alinamarissa
[]
910996533163597826
Thu Sep 21 22:37:53 +0000 2017
くり目なのに動物園が越えられない(´・ω・`)
844235082122502144
真凛@マンドラ鯖
marin__FF14
[]
910996533180473344
Thu Sep 21 22:37:53 +0000 2017
今朝は家で飼ってるセキセイインコに「起きろ〜」って言われて起きました。朝からありがとうね😊
2695193803
吉澤克哉
_yszwkn_
[]
910996533171986432
Thu Sep 21 22:37:53 +0000 2017
RT @Sunnysi04770492: Celebs Transformations: There's No Way Nicki Minaj Looked Like That As A Teen!.&gt;&gt;

https://t.co/y5gyTV2JpS
827453832368107521
love princess
pr5878925
[]
910996533188767744
Thu Sep 21 22:37:53 +0000 2017
RT @ryo170627: 23日も24日もナゴド最終戦なので昇竜ユニフォームでナゴド全体を青く染めましょう!
昇竜ユニフォーム持ってる方は着てきてください!お願いします🙇⤵️   持っていない方はビジターユニフォームでお願いします🙇⤵️ 23日24日行く人はぜひお願いします…
872298046414921728
fumi@竜党
fumi_ryu56
[]
910996533163712517
Thu Sep 21 22:37:53 +0000 2017
RT @genebsperling: Mike Pence just settled it: repeal bill can’t guarantee protections for preexisting conditions - The Washington Post htt…
15249218
IVotedBlueNotOrange
RespectPBJTime
[]
910996533176287232
Thu Sep 21 22:37:53 +0000 2017
RT @laipanwing: 오케워너원 파닝 2
나는 그냥 괁린이 옆에 지쳐서 널브러져서 기대고 있는 사람은 누굴까 했었는데... 소매 보니깐 지훉이였다 ㅋㅋㅋ 역시 대기실에서도 옆에 붙어있는 너희들
#판윙 #PanWink https://t.co/N…
845996048451538946
숲미아
je_pleurais_bcp
['판윙', 'PanWink']
910996533172092928
Thu Sep 21 22:37:53 +0000 2017
RT @sweethome96: 한반도 평화를 위한 성명서- 우리모두 동참해요 (출처 : [중고나라] | 네이버 카페) https://t.co/KujJdAQ16v
#HWPL #HWPL성명서 #북핵문제 #북핵문제해법 #평화통일 #평화선언문
3307004388
miracle
dnjsekfl35
['HWPL', 'HWPL성명서', '북핵문제', '북핵문제해법', '평화통일', '평화선언문']
910996533155307520
Thu Sep 21 22:37:53 +0000 2017
RT @kxyonn: YALL PLAY TOO FUCKING MUCH LMAOOO https://t.co/uU34xkL90H
143579853
MenoLee
ManuleLee
[]
910996533188870149
Thu Sep 21 22:37:53 +0000 2017
@_k_i_n_a_r_i_ 思い出の塊しかねえ
駅前潰れるとか泣きそう
4610191393
じ uria
sawa_ht_27
[]
910996533163679744
Thu Sep 21 22:37:53 +0000 2017
難攻不落なファイヤーウォールを突破し徘徊しているのを動かず静観。その後、超高速な攻防を経て煙幕を張りスイスに飛びインドに飛び、、、凄いなぁ
140014384
AZUMA Tatsuya
AZUMA_Tatsu
[]
910996533159510016
Thu Sep 21 22:37:53 +0000 2017
RT @SydneysOcean: Good morning lovers ❤️
Have a beautiful day 🤗
Love Ocean 👱🏼‍♀️
#TheWoman
@ScarletBlue9
@PG_Australia… 
525529223
Lydia Ozlo
subAlime86
['TheWoman']
910996533151010816
Thu Sep 21 22:37:53 +0000 2017
軽く通信規制みたいでついったーの画像が表示されない🤗パァ
4600619604
ドフ部のぽぽ🐥🐨🦍
poypoy_dofy
[]
910996533184565248
Thu Sep 21 22:37:53 +0000 2017
형아만 놔두고 가버리다니, 너무하네.
901003001996771329
[반꽁꽁] 살인마 오소마츠 🔪
__oso_Black_
[]
910996533188771840
Thu Sep 21 22:37:53 +0000 2017
RT @naimthedream5: After 6 weeks of being homeless I got a JOB and my 1st apartment all while still being enrolled in college. I was c… 
560738718
qwn
qwnjanine
[]
910996533176397824
Thu Sep 21 22:37:53 +0000 2017
دعاء السجود:سبحان ذي الجبروت والملكوت والكبرياء والعظمة
2719469249
abdaka
AbdakaAbd
[]
910996533159571457
Thu Sep 21 22:37:53 +0000 2017
Se a fasta de tudo que te tira paz !!
906664414597828609
CristopherBringhenti
Cris_Bringhenti
[]
910996533184651265
Thu Sep 21 22:37:53 +0000 2017
@nbbMRvK1vh7zlFc 残念、はずれです!
明日もチャレンジしてください(^^)
https://t.co/xnQg5XvN3v
115639376
ローソン
akiko_lawson
[]
910996533180616705
Thu Sep 21 22:37:53 +0000 2017
RT @giuliajnsk: melhor coisa da vida ter um relacionamento aberto c a mae p poder falar sobre qualquer coisa
1457051418
Bianca
biiazita_
[]
910996533159579658
Thu Sep 21 22:37:53 +0000 2017
Edino, kar je manjkalo #soocenje so bili ptičarji, ki bi trdili, da bodo vlaki povozili vsaj 50 kraških kondorjev na dan.
19503817
Blaž Šelih
blazselih
['soocenje']
910996533159501824
Thu Sep 21 22:37:53 +0000 2017
RT @anonymous201504: 民進党、豊田真由子の元秘書(無能)に衆院選出馬を打診⇒本人前向きに検討wwwwwwwwww~ネットの反応「投票用紙に『ハゲ』って書かれるの必至やろこんなん」「ハゲっぷりを見たいww」「なんでもありやな……」 https://t.co/m…
841153560184147969
太陽
BnerPXUKkcw41Ag
[]
910996533184667649
Thu Sep 21 22:37:53 +0000 2017
RT @snowflake_boy: 170922 SYD #수호 #SUHO #준면 #엑소
오늘 공연도 피곤하겠지만 힘내요 ㅠ0ㅠ💕 https://t.co/F2HFTiL4Hx
4887778681
훈몽
EXO_040894
['수호', 'SUHO', '준면', '엑소']
910996533155385351
Thu Sep 21 22:37:53 +0000 2017
RT @Niska_Officiel: ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ #COMMANDO
1142760049
léa
LChargueron
['COMMANDO']
910996533167874048
Thu Sep 21 22:37:53 +0000 2017
RT @benwikler: Everyone should watch and share this heartbreaking @dscc ad on the GOP health care bill over and over. https://t.co/Tfdlk6rh…
32366249
Amy Stewart Hale
penndragonArt
[]
910996533167849472
Thu Sep 21 22:37:53 +0000 2017
I just want to #MooreMAGA
1383051926
Trump/Trump Jr. 2020
GrantPatillo
['MooreMAGA']
910996533176295425
Thu Sep 21 22:37:53 +0000 2017
【先着】「プレゼント」閉鎖まで、残り… https://t.co/axPAABT43G #完全無料 #千客万来 #他力本願  #ツール #副業 #スマホ #メールアドレス #限定 #公開 #インターネットビジネス #1回 #お小遣い #現金 #GET #お財布
790140421619843072
ブランドプレス〔Brand Press〕
brand_pre
['完全無料', '千客万来', '他力本願', 'ツール', '副業', 'スマホ', 'メールアドレス', '限定', '公開', 'インターネットビジネス', '1回', 'お小遣い', '現金', 'GET', 'お財布']
910996533180473345
Thu Sep 21 22:37:53 +0000 2017
RT @kabuto0617: 今日も遅くなっちゃった、ごめん!
ダイヤTOKYO2日目!
無事終了!
沢山のお手紙プレゼント色紙etc
本当にありがとう♡

今日もマチソワともに燃えました!
まだまだ明日からも気合い入れてくぞコノヤロー!

おれの背中だけ見て… 
4256100500
きのこ
k_mushroom5
[]
910996533188993025
Thu Sep 21 22:37:53 +0000 2017
RT @youngdchris: What happens in Vegas will follow you home – cybersecurity skills and industry relationships. Join us! https://t.co/NDby2u…
874332514143391744
TMI SECURE
TMISECURE
[]
910996533167960064
Thu Sep 21 22:37:53 +0000 2017
ماسسسكه نفسي ما احفظ البريفيوز انتظر تنزل HQ لان جوالي مليانننن بريفيوزز وحذفتهم لان بعدين ارجع احذفها
727280525933707264
® #HER | 🐋
KIMRena7
[]
910996533180592128
Thu Sep 21 22:37:53 +0000 2017
@NoSoyPoetuit @salazarkarla212  :(
184977144
Diego Huerta
chichodiego
[]
910996533184749568
Thu Sep 21 22:37:53 +0000 2017
RT @redqueenliz: Emily Kroemer https://t.co/lpH3q8i3jg
846951461368086528
Maria Santiago
MariSan50177828
[]
910996533180583937
Thu Sep 21 22:37:53 +0000 2017
@datGuynamedSam @VascoMac_ É pa mim?
866335051625222144
Escobar
sangueazul86
[]
910996533176422400
Thu Sep 21 22:37:53 +0000 2017
RT @pajaclub: lechando a full ✅Actitud Pajera https://t.co/j4gzRnqjOL
490745535
Ad Hd
AdriianLove14
[]
910996533163806720
Thu Sep 21 22:37:53 +0000 2017
RT @TheSupercarHunt: Mercedes-Benz E 63 AMG S W212 spotted in Moscow! https://t.co/r9NJqK5g5s https://t.co/TbR3JNEHic
3618370942
Ziyad
ziyadmiloud
[]
910996533155426304
Thu Sep 21 22:37:53 +0000 2017
RT @JuCheGuevara: The Joseph Stalin Theme https://t.co/zhZ5I25YyZ https://t.co/Mj1EVx854f
788483698102571008
althusserina ☭
Lenins_kitten
[]
910996533163823104
Thu Sep 21 22:37:53 +0000 2017
@girmazon Te amo tanto meu Deus q linda aaaaaa vsf
3134195210
Gabriela Weber
gabwebeer
[]
910996533180473347
Thu Sep 21 22:37:53 +0000 2017
RT @girllifetexts: I don't care about your 
- age
- weight 
- sexuality 
- height 
- gender 
- skin color.
As long as you respect me, I'll…
1654816255
Klaudia Diaz
_dayssklaudia
[]
910996533168021505
Thu Sep 21 22:37:53 +0000 2017
RT @CuteiMessages: https://t.co/PafuKmgJCL
396677207
Snow.
Rafaaela2Santos
[]
910996533176410118
Thu Sep 21 22:37:53 +0000 2017
RT @Country_Voices: Happiness has its own way of taking its sweet time. -Gary Allan
4614970934
Ashleigh Cloud
AshleighCloud1
[]
910996533159501825
Thu Sep 21 22:37:53 +0000 2017
@doshioexo わっ凄いですね👏( ˊᵕˋ )お疲れ様でした
1500293383
どぉぉぉぉぉぉ
d112143o
[]
910996533167906816
Thu Sep 21 22:37:53 +0000 2017
Yup. Horrifying. https://t.co/ZQQn6fNjSa
200748838
Marek Kiejko
Modster99
[]
910996533188988929
Thu Sep 21 22:37:53 +0000 2017
@DaviCoutinho18 👍
730804145704337408
Tayssa Salgueiro
TaaySilva17
[]
910996533184684032
Thu Sep 21 22:37:53 +0000 2017
@ocrhkZ0ElLSEpAd 残念、はずれです!
明日もチャレンジしてください(^^)
https://t.co/xnQg5XvN3v
115639376
ローソン
akiko_lawson
[]
910996533172211713
Thu Sep 21 22:37:53 +0000 2017
RT @comoayudarmx: #Necesitamos albergues para 25 niños con papás desaparecidos y huérfanos. https://t.co/3HymQIwJv7
46234804
El 🐧 Fuerza México
Gigio
['Necesitamos']
910996533159645184
Thu Sep 21 22:37:53 +0000 2017
@DwnDak @YGKTraffic (I would much rather be beside a double 53ft road train than beside an Audi!)
337156660
Matt Marsh
marshmat
[]
910996533180542977
Thu Sep 21 22:37:53 +0000 2017
VAMOS ACORDAR FLUMINENSE, VAI TOMAR NO CU
2734997253
Luuck  🇮🇹
luucksct_
[]
910996533184786432
Thu Sep 21 22:37:53 +0000 2017
@martinnmg Es lo que pienso, ojalá que se pueda votar, que podáis votar con garantías y que salga lo que salga se e… https://t.co/AVE5nt5oXi
83351182
Raúl Ernman
RaulErnman
[]
910996533163823107
Thu Sep 21 22:37:53 +0000 2017
#DiaMundialDelAlzheimer  x ti abuela, tantos años sufriendo casi 17 años esta maldita enfermedad,desde el 4 de juli… https://t.co/BjNppd4bfw
798613308911796224
Maria Gracia Perez O
marigpo2
['DiaMundialDelAlzheimer']
910996537366405120
Thu Sep 21 22:37:54 +0000 2017
冬休み、部室棟か、なんかの校舎で女子二人と男子一人でレトロゲームするとか神だろまじで
2187852727
めんま殿
1_c3
[]
910996533180616706
Thu Sep 21 22:37:53 +0000 2017
Planning our next adventure day #dogsonadventures #thedogbackpacker https://t.co/muXbJR3TNk
870633245674803204
The Dog Backpacker
Dog_Backpacker
['dogsonadventures', 'thedogbackpacker']
910996537366396929
Thu Sep 21 22:37:54 +0000 2017
他校の制服お洒落
905813917187768320
ミョウバン
hiddentext3252
[]
910996537349619712
Thu Sep 21 22:37:54 +0000 2017
RT @non_hoi_park: 「けものフレンズ」コラボグッズにただ今一部品切れがありますが、明日(22日)には再入荷して(これが最終!)すべてのグッズが揃う予定です。
#のんほいパーク #けものフレンズ #コラボグッズ… 
2954437976
+レオン
leon_love_cats
['のんほいパーク', 'けものフレンズ', 'コラボグッズ']
910996537374777344
Thu Sep 21 22:37:54 +0000 2017
RT @akirahpacha: แจกวันเกิดจินยองสามีเราบั้มนวอว1+ รูปขนาดโปสการ์ด1+ การ์ดใส1+ สติ๊กเกอร์1+ มาร์สอิทสกิน1ทั้งหมดนี้ได้คนเดียว รีไม่… 
378055288
Nanny MarkBamJack...
NanLoveJackson
[]
910996537353715712
Thu Sep 21 22:37:54 +0000 2017
@cos6161_m 私の方が可愛いことりちゃん気になってましたよ!!!🙌
フォロバ遅れてすみません😢
ぜひに仲良くしてもらえたら幸せです☺️💞
2737891147
ぱんだ🐼CC小日向美穂
P_AND__
[]
910996537345527809
Thu Sep 21 22:37:54 +0000 2017
@_ISpain_ 😂😂😂 هاد اللي انتبهتي عليه
3238892558
Nada Barakat
nada_barakat97
[]
910996537370480640
Thu Sep 21 22:37:54 +0000 2017
RT @kdrama_news: Ratings 170921:

#HospitalShip : 10.5% | 12.4%
#ReunitedWorlds : 6.1% | 6.7%
#Manhole : 2.3%

#CriminalMinds : 2.9%
1621585957
Imma
stnurhashima
['HospitalShip', 'ReunitedWorlds', 'Manhole', 'CriminalMinds']
910996537357959168
Thu Sep 21 22:37:54 +0000 2017
@m7raSOQrgjAEinZ したいです❗️(≧∀≦)
2337884660
まさ
Shusui1111
[]
910996537345548289
Thu Sep 21 22:37:54 +0000 2017
RT @thvhealing: 😿🙀😭😔😪😓😩😨😵🙅 https://t.co/cU2TgDxVyy
98351913
lana from themyscira
idcjuli
[]
910996537379082242
Thu Sep 21 22:37:54 +0000 2017
@PedroMutta tadinho hahaha
2959795691
Mariana Contii
_marianaconti
[]
910996537383292928
Thu Sep 21 22:37:54 +0000 2017
I just give up on all my accounts. awesome. 🤙🏼I'm not needed here. There are so many other good deans. I'll just go fuckmyself lmao
2450056506
B e a n™
RaisedToKickAss
[]
910996537383243776
Thu Sep 21 22:37:54 +0000 2017
RT @priorityoonmin: Hoseok es bailarín, rapero, compositor, coreógrafo, modelo, vocalista en tiempos libres pero sobre todo, la persona más…
3136640228
Pied Piper
P200236
[]
910996537366396928
Thu Sep 21 22:37:54 +0000 2017
RT @Biboy94madrid: En tu barrio empezaron a construir un montón de chalets. Con el pinchazo de la burbuja los dejaron a medias. Ahora… 
1000219932
david hefestion
hefestion_love
[]
910996537379041281
Thu Sep 21 22:37:54 +0000 2017
RT @vsphx: não quero ninguém a olhar para ti da maneira como eu olho
3901540341
Mafalda ❤
pocrlhodred
[]
910996537345527810
Thu Sep 21 22:37:54 +0000 2017
@DeanOfRacine nice
262452184
Jake Ciely
allinkid
[]
910996537358143488
Thu Sep 21 22:37:54 +0000 2017
RT @kylegriffin1: HHS Sec. Price has taken at least 24 flights on private charter planes at taxpayers' expense, cost exceeds $300,000. http…
587856989
Carolyn
littlecarolyn45
[]
910996537374801921
Thu Sep 21 22:37:54 +0000 2017
RT @sjsportsdigest: Williamstown soph keeper Maddie Misker after the Braves tied No 3 Kingsway 1-1 @BravesScores https://t.co/UOf1uNwjzI
3300998442
Camryn•Fyffe
thecamrynfyffe
[]
910996537370652672
Thu Sep 21 22:37:54 +0000 2017
حينما لا نجد الحب .. و حينما لا نجد الصداقة .. فليس معنى هذا أنه لا يوجد الحب و لا توجد الصداقة .. و إنما معنى... https://t.co/5jiv5t30X6
1616333340
mohammed0156
mohammed0156
[]
910996537383235585
Thu Sep 21 22:37:54 +0000 2017
@RussulHTIQ وج فدوة اروحله😔😔😭😭😭
886529719742627844
Darina
dudidoctor97
[]
910996537349689344
Thu Sep 21 22:37:54 +0000 2017
RT @slowtaehyung: Yoongi disse que vendeu roupas qnd era trainee, mas nem assim conseguia ganhar dinheiro; olha só como ele tá agora #BTSCO…
738158306586333188
akemi; 承 CHEN day
monstaxuxu
[]
910996537379102721
Thu Sep 21 22:37:54 +0000 2017
RT @M1_A_B: پاشو برو تو هال حداقل با مهمونا یه سلام علیک بکن
-نمیخوام از اون دختره ی ایکبیرشون بدم میاد https://t.co/w38EqJrQ1B
2723733757
☆Mûtê☆
Albaloiy
[]
910996537370652674
Thu Sep 21 22:37:54 +0000 2017
RT @hajis9: ستدرك لاحقا أن الله بلطفه الخفي نجاك من الكثير من بواعث قلقك وخوفك وحزنك ..
فلتأوي إلى ركن شديد .. إلى الله أمان الخائفين ومفزع…
807649705207431168
نبضي إستغفاري
farche_altorab
[]
910996537353883648
Thu Sep 21 22:37:54 +0000 2017
plato's concept of body &amp; soul distinction is one of my fav things i've ever learned about. thinking of it a lot today
319901270
AYYYEE-dria
cornytesoro
[]
910996537349689345
Thu Sep 21 22:37:54 +0000 2017
RT @clautomata: @edufeiok @gabrieliezzi @A24COM ..se vió recien el pijama de Nisman doblado al costado de su cama..lo mataron antes de q se…
2178028787
Maria Lopez
pspmarialopez
[]
910996537362337792
Thu Sep 21 22:37:54 +0000 2017
RT @juancasosa1: No me vengan con pavadas. Las unicas intertribus son las del José Martí
711727458869972992
Luucilaa ✨
LuuParedes05
[]
910996537358082048
Thu Sep 21 22:37:54 +0000 2017
Tirei Aquário!! https://t.co/mqGROPj3Qo
87453496
k ♡ jinyoungie
sweetkaroline_
[]
910996537366466560
Thu Sep 21 22:37:54 +0000 2017
RT @manna987: والان واقعا وغالبية الدول تعلنها تحت مبدأ
مشتهية ومستحية https://t.co/v2S9mhRRFM
1044147511
دمعة طفل
ali119_2
[]
910996537349595136
Thu Sep 21 22:37:54 +0000 2017
RT @jab_cho: 진짜 개 하찮고 귀엽다.......... https://t.co/rIcfAStkg1
834303107345506304
나래
Narae_U
[]
910996537353875458
Thu Sep 21 22:37:54 +0000 2017
RT @eldestapeweb: Las pruebas de la censura en @C5N : el Whatsapp que prohíbe hablar de @gladys_gonzalez. 
https://t.co/Tg0JwSFZel
904500925343129602
Pablo Boni
PabloBonifacio7
[]
910996537374908416
Thu Sep 21 22:37:54 +0000 2017
Gostei de um vídeo @YouTube https://t.co/9WwVlfMNxx DIA EM QUE ASSISTI IT A COISA
23113490
Paulo César
pcmendesjabo
[]
910996537374838785
Thu Sep 21 22:37:54 +0000 2017
RT @davidmorka1: DSTV in trouble.
TSTV has Pay as you go
Travel and pause subscription
Free 20GB Wi-Fi, Shows all leagues. Proudly 9ja. 

#…
107482300
Tope Olanrewaju
Topeolanrewaju
[]
910996537362313216
Thu Sep 21 22:37:54 +0000 2017
Digital Thailand Big Bang 2017 sheds light on progress towards country’s digital transformation… https://t.co/t3PY7j2eQl
20294990
Thaivisa
georgebkk
[]
910996537370660866
Thu Sep 21 22:37:54 +0000 2017
Im Like Take Me To Da Safe Now🏧😈👳🏾💣 https://t.co/Y6M0twGw3y
70028293
King Cap🤴🏾🎓
IAmSmokeyBear
[]
910996541543813120
Thu Sep 21 22:37:55 +0000 2017
RT @DGraziel: @theBatt218 @ALDub_RTeam @AlDubBigPemily @ALDubFTnQT @TropALDUB @ALDUB_inARTeam @jophie30 @imcr8d4u @AMInaticsOFC… 
432769150
Shorty116
leah_roz
[]
910996541552312320
Thu Sep 21 22:37:55 +0000 2017
RT @33kitta: 二期のED2『No,Thank you!』もかなり好きだから聴いてほしい https://t.co/ox4JG5EhRC
713385944674541569
로나님이관캐한테고록받았대
Iam_Merona
[]
910996541556400128
Thu Sep 21 22:37:55 +0000 2017
いい加減杏奈ちゃんふたつめのソロ曲を我に取り込まないと
355472321
ゆきもりモイ子@ハッチポッチ両日現地
poketore_Kamijo
[]
910996541548015616
Thu Sep 21 22:37:55 +0000 2017
みんな早起き!
30分ほど前に登録完了したけど、既になかなかな番号だったw
1962875539
みーたん
skmssickxxx
[]
910996541539676161
Thu Sep 21 22:37:55 +0000 2017
Wait...does @PicMonkey not offer free editing anymore?
739615361289490432
Aine
ainewrites
[]
910996541543899137
Thu Sep 21 22:37:55 +0000 2017
Ya falta menos: Ya falta menos para ver el siguiente partido del Barça… https://t.co/XyKAMi64Xc Ver:... https://t.co/CyZqrTSKr1
185757778
Fans Radio ™ ▶
fansradiomusica
[]
910996541556580357
Thu Sep 21 22:37:55 +0000 2017
RT @Arianamumtaz5: Se me fue el negroo https://t.co/uZwbCUSxrn
899686500723511296
deniz
Deniz48426120
[]
910996541573177344
Thu Sep 21 22:37:55 +0000 2017
쫀ㄴ아
733299305432276993
큐냥
drias0305
[]
910996541573234688
Thu Sep 21 22:37:55 +0000 2017
RT @ScienceAlert: This Nuclear Bomb Map Shows What Would Happen if One Exploded Near You https://t.co/4HRCTyp1HD
320549869
Cliff Barackman
CliffBarackman
[]
910996541556482048
Thu Sep 21 22:37:55 +0000 2017
I need backup!Battle ID: 0ACB1EFC
Lvl 60 Yggdrasil Omega
https://t.co/5mtQPYrMmC
2318529198
lycabaws
Lycabaws
[]
910996541577596928
Thu Sep 21 22:37:55 +0000 2017
RT @sarajimenezact: Gracias a todos por esta noche! #estoyvivo3 Feliz de las tortas que me llevo si vienen de ti Luci😌❤️ https://t.co/lzSFL…
3418322242
Marc_MB7
MarcMb07gamer
['estoyvivo3']
910996541564796928
Thu Sep 21 22:37:55 +0000 2017
僕らはまだ子供だが、あと数年もすれば立派な大人だ。
大人になってしまう。
いつまでも子供のままではいられないのだ。
2178425083
日ノ本譲
hinomotoyuzuru
[]
910996541573300226
Thu Sep 21 22:37:55 +0000 2017
اللَّهُمَّ إِنِّي أَعوذُ بِرِضاكَ مِنْ سَخَطِكَ، وَبِمعافاتِكَ مِنْ عُقوبَتِكَ،  https://t.co/OxCK7l31k2
3650835554
remas
roun696
[]
910996541577547776
Thu Sep 21 22:37:55 +0000 2017
حسبي الله لا إله إلا هو عليه توكلت وهو رب العرش العظيم
♻️ https://t.co/dTyZNG8EIe
3316816387
ابواحمدالسعيدي
xW562grJvP6lT2G
[]
910996541552447488
Thu Sep 21 22:37:55 +0000 2017
RT @FoxNews: Gordon Chang: "I think the North Koreans now are very concerned because what they're starting to see is that the US… 
199768203
GERMANY OUST MERKEL!
LovToRideMyTrek
[]
910996541552435205
Thu Sep 21 22:37:55 +0000 2017
Estou super feliz por esta mas um dia de vida , viva ..
740320559792279552
Madrinha do Kaue 💙
ttdalindonaaqui
[]
910996541569224704
Thu Sep 21 22:37:55 +0000 2017
RT @Ggi7ej7099291: Can you believe that? THis site will help you to get 1000-2000 Followers per day! Here https://t.co/6JgKMVkVQ9… 
3135518497
Loya Natisha
Qzi8jc1050155
[]
910996541548134400
Thu Sep 21 22:37:55 +0000 2017
RT @aalterius: To w końcu ile tych flag skradziono. Jedną??? #LOL
#wtylewizji
4008383531
Monika 1974 🇵🇱⛪
nikanna7
['LOL', 'wtylewizji']
910996541539852290
Thu Sep 21 22:37:55 +0000 2017
RT @DanSouza1988: Destaques: Letícia Colin, Caio Castro, Agatha Moreira, Dhu Moraes, Roberto Cordovani, Giullia Buscacio, Julia Lemmertz, F…
895350161576275968
Leda
ldanireis
[]
910996541573402625
Thu Sep 21 22:37:55 +0000 2017
RT @CarlosLoret: El gobierno federal nos dijo siempre que había una niña y que estaban a punto de rescatarla con vida. Ahora cambian la ver…
73271580
viko
blanco3g
[]
910996541560819712
Thu Sep 21 22:37:55 +0000 2017
See our latest videos on: https://t.co/RBg1Oh72cP #Adobe #AugmentedReality #ViralMarketing
44356030
3ATIVE
3ative
['Adobe', 'AugmentedReality', 'ViralMarketing']
910996541564968960
Thu Sep 21 22:37:55 +0000 2017
RT @Ggi7ej7099291: Can you believe that? THis site will help you to get 1000-2000 Followers per day! Here https://t.co/6JgKMVkVQ9… 
2979487012
Ethel Mccarthy
InaraaPg14ofo
[]
910996541539618816
Thu Sep 21 22:37:55 +0000 2017
RT @apio7777: 【要拡散】
安部首相がまだ衆院選を名言していませんが、選挙濃厚なのであえて全国の少しでも多くの方々に安部政権の今までの成果を整理したので見ていただきたい!

必見です。ぜひ選挙での参考としてください。 https://t.co/N0ihywhmoi
887286128960610308
とくだいシーチキン
hidedtk
[]
910996541577531392
Thu Sep 21 22:37:55 +0000 2017
RT @nader_alawadhi: لا تسالني عن #المحرق مع سلمان شريدة.. 

طبيعي  فوز ونصر وعناوين تزين كل جريدة ..

#دوري_NBB #دورينا
4918466572
Faisal
_faisaljr11
['المحرق', 'دوري_NBB', 'دورينا']
910996541560836096
Thu Sep 21 22:37:55 +0000 2017
63.7 of all numbers are made up on the spot.   #GTS
337793102
TDK
TDK26
['GTS']
910996541573419008
Thu Sep 21 22:37:55 +0000 2017
WTF is the world coming to when North Korea makes more common sense then the US or in this particular case Donald T… https://t.co/mDio2QMxYg
2522862204
SarkyGit 2017
McaffeeTV
[]
910996541573353475
Thu Sep 21 22:37:55 +0000 2017
RT @3issawe_1: كان وهما جميلا🌸
لكنه في النهاية خدشني وتركى بى شئ لايتغير.!
742432064084021249
تُےـوِتُے™ ❌🚫
totasayed666
[]
910996541565018112
Thu Sep 21 22:37:55 +0000 2017
RT @DragonflyJonez: We've reached the point where Kim Jong Un is calling America's president crazy and I'm like "FINALLY SOMEONE SAID I… 
764111965
#FreeDarius
BBB_DROB
[]
910996541573353473
Thu Sep 21 22:37:55 +0000 2017
RT @dallasxsunny: throwback do momentu kiedy wchodziłam na koncert shawna i usłyszałam sott XDD https://t.co/iP12WMid7W
4850535298
zielonooka Lydia 4
malinowawrozka
[]
910996541577601024
Thu Sep 21 22:37:55 +0000 2017
RT @Diabloking666: Donde está Serresiete tito @cristobalsoria ?? 😂😂😂😂😂 https://t.co/AGx3JUvOWe
1285956391
juan jose sanchez
JosesanchezJuan
[]
910996541552447489
Thu Sep 21 22:37:55 +0000 2017
@LadyOfIronrath Con barba me parezco menos a mi padre, así que creo que me la dejaré
898666665231220741
Tyrion Lannister
TheRogueLion_
[]
910996541543976960
Thu Sep 21 22:37:55 +0000 2017
Hi
910989907543429120
Katlyn Yvonne Wilkie
katlyn_yvonne
[]
910996541569163264
Thu Sep 21 22:37:55 +0000 2017
RT @Rebe1004: @uggzo @uggzo  Estaban en el piso 7, no sabemos nada de ellos, porfavor 🙏🏻 https://t.co/rnUae3VXyu
426201055
Alison M.⚡🇲🇽
YoSoyAlii
[]
910996541556580360
Thu Sep 21 22:37:55 +0000 2017
morgen wieder zum wasser yoga #healthcare #Obamacare
910798591425433601
waka
waka900
['healthcare', 'Obamacare']
910996541543825408
Thu Sep 21 22:37:55 +0000 2017
RT @margarette_77: 有難うございました、大分の貴様ら。 https://t.co/1tNdCNEfQY
799614749520429056
koji
ANI6500
[]
910996541577494528
Thu Sep 21 22:37:55 +0000 2017
I added a video to a @YouTube playlist https://t.co/ZcIWvAw3Kt [PS3] JJBA HD - jojoHFTFsq vs sabaori_grappler
767435688467988480
Jin
SFEX_TSJ
[]
910996541539799046
Thu Sep 21 22:37:55 +0000 2017
++Divorzio Berlusconi-Lario, Veronica insiste: voglio lo stesso tenore di vita++ 
https://t.co/rcQm3nk1hN
#OsservatorioPolitico
 Nuova...
2805224428
OsservatorioPolitico
OsservPolitico
['OsservatorioPolitico']
910996541573300224
Thu Sep 21 22:37:55 +0000 2017
I'll show you the future of #advertising next week. Follow my coverage of #AWNewYork as an @Adobe Ambassador.… https://t.co/5NhhfWaqHe
719472337
CathyHackl AWNewYork
CathyHackl
['advertising', 'AWNewYork']
910996541560811520
Thu Sep 21 22:37:55 +0000 2017
RT @luishrUD: @SevillaFC @manoloudradio @UDLP_Oficial Y Vitolo? Está lesionado? Alguien que me diga por que no va convocado por favor. Grac…
4861768967
🔴⚪
ffcrx3
[]
910996541539803136
Thu Sep 21 22:37:55 +0000 2017
Escargophone attrapé !
Le légendaire Oz ressuscité et aux ordres de Moria ! 
https://t.co/QR4tmsDCqM #TreCru https://t.co/X9PMpdIEfS
851624910
Renaud BUGUET
renaudbuguet
['TreCru']
910996545771683840
Thu Sep 21 22:37:56 +0000 2017
RT @cinnamondc1: @ELGRANSHOW_Peru @JibajaAngie votando todoos los dias porque hay Angie para rato!!!!
740965233766764545
Guerrera Jibaja
sachipri_08
[]
910996545763401728
Thu Sep 21 22:37:56 +0000 2017
RT @xavierlur: So much respect for them. https://t.co/g9vQVYGQ7v
442676003
z
faithjammy
[]
910996545759199233
Thu Sep 21 22:37:56 +0000 2017
RT @chrislhayes: "Sorry, we have to cut your Medicaid. There's just not enough money" -- guy flying on a Lear Jet charter to Aspen.
885707847715049472
Gretchen gordon
Gretchengordo15
[]
910996545771773952
Thu Sep 21 22:37:56 +0000 2017
RT @kepd_: 無償フォロ爆します
こちら135垢
この垢をフォローとRTで撃ちます
#無償フォロ爆
#有償フォロ爆
#フォロ爆
4
897748703326289920
みずき💎ほのほのねおんつぇる
mmiizzuukkii44
['無償フォロ爆', '有償フォロ爆', 'フォロ爆']
910996545767481345
Thu Sep 21 22:37:56 +0000 2017
today's stats : 140 non-followers. found via https://t.co/heUXFrFW2k
2484522168
#1989#🐰
LayForever101
[]
910996545750802433
Thu Sep 21 22:37:56 +0000 2017
RT @mk_kurinba: 🐰 https://t.co/h5bHoPgbmi
244060558
季咲スグル
suguru420
[]
910996545734033408
Thu Sep 21 22:37:56 +0000 2017
RT @Alextrxm: ma participation quand on doit faire un travail de groupe https://t.co/XOH3S492RJ
789090004031209472
lou
sfglouise
[]
910996545738235904
Thu Sep 21 22:37:56 +0000 2017
RT @dj_maymey: #LoveStatusLiveSession Fan Meeting วันนี้พบกับ ซานิ แท๊ปบี้ โบ๊ท สิริโรจน์ ไอซ์ ธมลวรรณ #lovestatusเพลงรักที่ไม่รัก https://…
706330060542705664
(🕔'___'🕚)
iamchoom
['LoveStatusLiveSession', 'lovestatusเพลงรักที่ไม่รัก']
910996545750700032
Thu Sep 21 22:37:56 +0000 2017
RT @mymoneybackymc: ㄴㄴ
870661499546607617
워너비마벱
winkdeep0207
[]
910996545759207424
Thu Sep 21 22:37:56 +0000 2017
RT @JuliaBayo1: El PSOE de Aragón intenta impedir la asamblea a favor de un referéndum pactado convocada x Unidos Podemos.PP=Psoe

 https:/…
1419229063
rcko
rcko3
[]
910996545738174464
Thu Sep 21 22:37:56 +0000 2017
RT @AUNT_POTATO_: 170921 정국 지민
#정국 #지민 #JUNGKOOK #JIMIN #방탄소년단 #BTS https://t.co/RpNkhZLIaw
399468714
~JHOPExMyBoss
aprilmesa27
['정국', '지민', 'JUNGKOOK', 'JIMIN', '방탄소년단', 'BTS']
910996545738297344
Thu Sep 21 22:37:56 +0000 2017
RT @justpatterns: harry potter https://t.co/mOKwUD7ZQH
724467957431070720
🔥
PhinixSocial
[]
910996545767538688
Thu Sep 21 22:37:56 +0000 2017
RT @MingleMangle_JM: 고화질 뜨기전에 미리 보세요... https://t.co/rQfU7Mt4oM
842353059476860929
グミ団
yghadabts
[]
910996545750802432
Thu Sep 21 22:37:56 +0000 2017
Rifado
611104008
Jorge
Larry_Lyndon
[]
910996545767485440
Thu Sep 21 22:37:56 +0000 2017
RT @gankstars: 🎉 #iPhoneX #Giveaway 🎉
-Tag Your Friends
-Turn Notifications On
-RT, Like &amp; Follow @Gankstars
Click Here:… 
860406746
azoo0ooz22
azoo0ooz23
['iPhoneX', 'Giveaway']
910996545742540800
Thu Sep 21 22:37:56 +0000 2017
RT @foreverwrite_: @loveebre_ Oh yop! I’ll be calling nephew to help decorate in due time ✍🏾✍🏾✍🏾
302271975
🖤
loveebre_
[]
910996545742557185
Thu Sep 21 22:37:56 +0000 2017
@ThiagoMC012 FEBEM
4301959361
barbie marley⁴³
marifreitaszz
[]
910996545771675648
Thu Sep 21 22:37:56 +0000 2017
RT @HamillHimself: La Fuerza estará con México ... SIEMPRE! 🇲🇽❤️❤️❤️ mh- https://t.co/h49zm9gFUY
287406986
Silvia Loría
sil_locs
[]
910996545738346497
Thu Sep 21 22:37:56 +0000 2017
RT @kay_spn: @jill_1966 @bibi_soso42 @NinaWesi @WesleyJarpad @lokiprincesskp @SaraBaird19 @Becky78344366 @liataghva @2714monika… 
887318078
ANGELA WALKER
ANGELAW90911901
[]
910996545755140096
Thu Sep 21 22:37:56 +0000 2017
اللهم لك الحمد كما تحب وترضى https://t.co/Cm88DInHAr
747661550597570561
صدقة لأبي رحمه الله
malash555551
[]
910996545771905030
Thu Sep 21 22:37:56 +0000 2017
RT @thehill: JUST IN: Mueller requests Air Force One phone records in Trump-Russia probe: report https://t.co/07VbD20IoK https://t.co/mXb7q…
829405161219092480
PROUD DEM
lmadams56
[]
910996545755107330
Thu Sep 21 22:37:56 +0000 2017
@toasterposey Yeah, exactly. In between bouts of rage &amp; terror I sometimes feel this way about 45.
2256756231
(((MissysaurusRex)))
missykaybm
[]
910996545750913029
Thu Sep 21 22:37:56 +0000 2017
https://t.co/ZBIev9VD9g
1186970438
kenny
_KSBS
[]
910996545734094850
Thu Sep 21 22:37:56 +0000 2017
🌹👑 me caes demasiado bien tenemos.cosas pendientesss
2867217621
Rodri
Rodrii_Sego
[]
910996545763463168
Thu Sep 21 22:37:56 +0000 2017
só acho que o pau já tá quebrando
854328807095926785
Lavs
laviniacferrei1
[]
910996545759272960
Thu Sep 21 22:37:56 +0000 2017
RT @AngryManTV: Kevin Hart’s sidepiece Montia Sabbag has spoken... https://t.co/Jkb6uvtgRO
312396694
diggy fan acc
_teewrex
[]
910996545746690048
Thu Sep 21 22:37:56 +0000 2017
(ولقد راودوه عن ضيفه فطمسنا أعينهم فذوقوا عذابي ونذر) [القمر:37] https://t.co/etRTuMXhNw
2341273607
لأجلك أبي
453_651
[]
910996545733984256
Thu Sep 21 22:37:56 +0000 2017
RT @zzv0w0vzz: 자기 고향인 강릉에 와서 너무 신난 김쩨알
오디오 빌 틈없이 추임새 넣는거봐ㅠㅠㅠ
너무 귀엽잖아💦💦 https://t.co/l9KZ0KjBa9
876780937937276929
💸아론뱅크💸,✨10/10컴백✨
eunhaek_k
[]
910996545767641093
Thu Sep 21 22:37:56 +0000 2017
Matando a sdds de conversa com a Emilly ❤
4638598993
gabi ffc
BiQuitete
[]
910996545746739200
Thu Sep 21 22:37:56 +0000 2017
(فانتقمنا منهم فانظر كيف كان عاقبة المكذبين) [الزخرف:25] https://t.co/MBsu6Z7Y99
3219124051
ادعية.
Do3a_f3
[]
910996545750863873
Thu Sep 21 22:37:56 +0000 2017
@GeowSiniscalchi Bolada então
3064218245
bragança
lucashbragaf1
[]
910996545734094849
Thu Sep 21 22:37:56 +0000 2017
@_Memowhia A7la 7d galha)):
4421701692
〰
eaysh__
[]
910996545750827010
Thu Sep 21 22:37:56 +0000 2017
RT @DManuais: @idolshelpff 😎
246978209
Mildred Gueiros
Gueiros11
[]
910996545767698432
Thu Sep 21 22:37:56 +0000 2017
O que me desanima de pega a estrada é a quantidade de meia roda que se acha o motorista e fica fazendo gracinha na pista
21006684
Kevin Fontoura
Kevinfontoura
[]
910996545750786048
Thu Sep 21 22:37:56 +0000 2017
RT @twitannn: これはおもろいwwwwwww https://t.co/wgGNGwEFta
3282778386
いとうえん
a_gcain
[]
910996545759252485
Thu Sep 21 22:37:56 +0000 2017
RT @ClutchPointsApp: Carmelo Anthony reportedly to accept Blazers trade if Rockets do not work out.

https://t.co/bcrsmQBiek
759794598717878273
Cent,5 Cent,10 Cent
BigTingsAhGwan
[]
910996545763463169
Thu Sep 21 22:37:56 +0000 2017
RT @AmyMek: New Hampshire...

Muslim “Refugee” sexually attacks several little girls as young as 7. 

@POTUS - We do NOT want m… 
3317982962
Valentine Leon Hemm
LeonHemm
[]
910996545742438400
Thu Sep 21 22:37:56 +0000 2017
Truetalk https://t.co/BNXYk7JGfq
278534020
Dion Broad
BRIZZYBROAD
[]
910996545750921216
Thu Sep 21 22:37:56 +0000 2017
RT @CarlosKarachy: #21Sep Represión en Catalunya contra quienes promueven el Referendo Independentista. El fascista de Rajoy contra el… 
909284472
gerzon cardenas
gerzoncardenas
['21Sep']
910996545750929408
Thu Sep 21 22:37:56 +0000 2017
RT @JACrespo1: La ley impide que los partidos "donen" sus fondos de campaña. Si de todas formas violan la ley, ¿por qué no para algo que va…
897564275442671617
Norma
Norjennings
[]
910996545759322112
Thu Sep 21 22:37:56 +0000 2017
RT @RodrigMarchena: Recuerdo: mañana VIERNES 22 ES LABORABLE en instituciones  públicas y empresas privadas.

NO habrá CLASES MAÑANA.
191574145
Wanda Batista
OneThaBa
[]
910996545750827008
Thu Sep 21 22:37:56 +0000 2017
@martin_gracyn @Em_ilyjane @SarahGraaace_ @heyy_CobiGreyy https://t.co/gqOwgFPWPv
594864216
Shelbs
shelby_secrest
[]
910996549928337408
Thu Sep 21 22:37:57 +0000 2017
RT @AlexisFawx: Happy Wednesday!!  #brazzershouse @Brazzers Episode 3 https://t.co/gcXj9qcoPV https://t.co/aHg2HqhYFu
525529223
Lydia Ozlo
subAlime86
['brazzershouse']
910996549932429312
Thu Sep 21 22:37:57 +0000 2017
RT @koumuinsan: https://t.co/ViinNA77Bo
767369534067970049
のうさん
R9CT6PHZLbfx3Xd
[]
910996549936717824
Thu Sep 21 22:37:57 +0000 2017
RT @sidefeelings: Minsan kahit anong pagintindi mo sa ibang tao, Akala ata nila na sa lahat ng pagkakataon iintindihin natin sila.
553274551
Nel Mcruz
NelMCruz
[]
910996549957697536
Thu Sep 21 22:37:57 +0000 2017
青の交響曲さん♪おはようございます(^^ゞ #駅メモ
833317240061562881
ケンキチ@駅メモ
kenkiti1975
['駅メモ']
910996549949300736
Thu Sep 21 22:37:57 +0000 2017
GasSensor_Xinpu2 Odor index: 0.0[index]  2017/09/22 06:37:57
2948737459
tldctw01
tldctw01
[]
910996549940871169
Thu Sep 21 22:37:57 +0000 2017
Miley Cyrus - Adore You (DJ Swoon Love Trap Remix) https://t.co/BJfLtOtkqQ
2156210696
EDM TOP100 DJ
EDMTOP100DJ
[]
910996549932539904
Thu Sep 21 22:37:57 +0000 2017
RT @solornbalbum: so chanyeol and kyungsoo probably gonna take the same flight to australia i guess?
2576837695
livingforexo 💪💪💪
mrsdoforlife
[]
910996549932523520
Thu Sep 21 22:37:57 +0000 2017
@edisontheboxer @BiIlionaires Naw it's beemer we were both wrong
838308657670447105
Firstdayout1
Firstdayout1017
[]
910996549936787459
Thu Sep 21 22:37:57 +0000 2017
ai meu deus estou ficando com toque dos meus banners, pensei que tinha superado essa fase
1624227200
Lauriane
lucillelesurto
[]
910996549949206528
Thu Sep 21 22:37:57 +0000 2017
@roxy0230 クズ。。爆笑
768779258802032641
もーな
monaaa0806
[]
910996549945217024
Thu Sep 21 22:37:57 +0000 2017
@justneedrandom est un gros caca qui pu
4842471299
CoucouJeSuisUnBOT
ccjesuisunbot
[]
910996549957816320
Thu Sep 21 22:37:57 +0000 2017
Crlh eu to muito puta, todo ano é isso de não poder comemorar meu aniversário no dia que eu quero pq tem 300 eventos no dia/final de semana
82689755
Ágatha
_agatha_barros
[]
910996549961961473
Thu Sep 21 22:37:57 +0000 2017
@rna690 تابعتك اذا بتجين خاص🙄
833372158147624961
--
toz_01
[]
910996549940989952
Thu Sep 21 22:37:57 +0000 2017
@sergiocruzrabnl @manorandu @PortuariosCNT @Produccionsn @portdebarcelona La próxima feria de abril la vais a tener… https://t.co/m2YmpeV7NR
881503919016378370
Jesús Pérez
jesusito2005A
[]
910996549957808128
Thu Sep 21 22:37:57 +0000 2017
(ولله يسجد من في السماوات والأرض طوعا وكرها وظلالهم بالغدو والآصال) [الرعد:15] https://t.co/WPH1p4dUne
2577176766
rana
ranaahmad235
[]
910996549957595136
Thu Sep 21 22:37:57 +0000 2017
RT @MingleMangle_JM: 고화질 뜨기전에 미리 보세요... https://t.co/rQfU7Mt4oM
2601214178
Princess Shoujo
ArinTakishima
[]
910996549966159872
Thu Sep 21 22:37:57 +0000 2017
RT @memeprovider: How Italians use forks https://t.co/8TmOGp3wF9
81201181
Cadar&Adolfo
alahu_cadar
[]
910996549949431809
Thu Sep 21 22:37:57 +0000 2017
You want to know who will win? Geylang Int. vs Home United in Singapore https://t.co/GAAFpGtUdF
749150878028984320
proSpoCo Football
proSpoFootball
[]
910996549936844800
Thu Sep 21 22:37:57 +0000 2017
RT @sergemike: Quand un des commerçants les plus importants du pays finance des entreprises privées du 1er Ministre, ça s'appele comment?
403999834
GéniaL
Y_Genia
[]
910996549936836609
Thu Sep 21 22:37:57 +0000 2017
RT @rayane_ffc: EH AGORA MEU DEUS PELO AMOR DE DEUS MARCA ISSO MEU DEUS BOLA NO GOL MEU DEIS
778781048679325697
FÉ FLUZÃO 🙏🏽❤️
oliver240699
[]
910996549962010624
Thu Sep 21 22:37:57 +0000 2017
あーーー楽して生きたいしハヨ帰りたーーーい└(└^ο^)┘
2315326566
すい
6suius9
[]
910996549961945089
Thu Sep 21 22:37:57 +0000 2017
RT @remarKable_syd: Needless to say, @MrJoeIconis, Be More Chill spreads faster than a SQUIP in Jeremy Heere's high school...
2660469006
Lilly
alltimelilly01
[]
910996549949378561
Thu Sep 21 22:37:57 +0000 2017
já era pra estar 2 a 0 LDU, ´PQP
366403001
DG🗿
DouglassantosPx
[]
910996549928398848
Thu Sep 21 22:37:57 +0000 2017
RT @El_Universal_Mx: Colombia envía a rescatistas a México con 22 toneladas de equipos https://t.co/zHnibaTsUG https://t.co/NtZselVHRc
856206922822897664
Pau
Paunoveloo
[]
910996549957832707
Thu Sep 21 22:37:57 +0000 2017
eu amei essa página kkkkkkkkkk socorro
1552865036
Sabrina Mendes
samemdes
[]
910996549961908224
Thu Sep 21 22:37:57 +0000 2017
@catue_cashew @Jaestryx FUCKWKDLSKSKSKS IM DOWNLOADING IT
886086234522750976
SleepyKill (Shay)
ShaySleepyKill
[]
910996549928398850
Thu Sep 21 22:37:57 +0000 2017
@SerenitySolas @AnnCoulter @realDonaldTrump Every leader throughout history has been a confidence-artist. That's wh… https://t.co/g8q82c9Iuz
809595854805929985
Aaron Lad
meddelem
[]
910996549936828417
Thu Sep 21 22:37:57 +0000 2017
RT @fuckc0ntr0l: Nunca pensé que iba a hacer ésto por una de mis mejores amigas. Por favor DIFUNDANN. Den RT. Compartanlo en sus red… 
2775253381
vale
dancewithla
[]
910996549961994241
Thu Sep 21 22:37:57 +0000 2017
Sketching on the class ✏
.
.
.
.
.
#art #sketch #pencilsketch #artoftheday #artistsoninstagram… https://t.co/e2KIAT8Cbo
52261518
Cely Schmidt ✨
celyschmidt
['art', 'sketch', 'pencilsketch', 'artoftheday', 'artistsoninstagram']
910996549945176065
Thu Sep 21 22:37:57 +0000 2017
@miianab MEU QUERO UM BEBÉ ANDRE
343322254
André 🇺🇸
andrealmeida95
[]
910996549966139392
Thu Sep 21 22:37:57 +0000 2017
RT @josesatopatohot: jose sequilan
888317260770758656
Montana Bradford
sadesima1985
[]
910996549966209024
Thu Sep 21 22:37:57 +0000 2017
RT @URihannaFansite: Rihanna giving interviews at the #FentyBeauty event in Paris. https://t.co/eEl082FlsB
3058542698
Gem
31anniebihh
['FentyBeauty']
910996549945249792
Thu Sep 21 22:37:57 +0000 2017
@bruno_roa4 Pra vc conhecer melhor as vacas que vc pega 😂
4092374729
Thabs
thabatavit
[]
910996549940973568
Thu Sep 21 22:37:57 +0000 2017
RT @poxau: enquanto o pai tenta corta a unha neném finge que tá doendo hahaha https://t.co/jonspjTDFn
4260820523
Rebecca ✨
rebeccagomesss
[]
910996549957799937
Thu Sep 21 22:37:57 +0000 2017
RT @Daily_Namjoon: [HD] BTS Jacket Shooting for DNA.
@BTS_twt #JIMIN #지민 #방탄소년단 #DNA #LOVEYOURSELF_承_Her https://t.co/dJh8Jmkc0b
873628416817463296
Hyooni
hyooniwa
['JIMIN', '지민', '방탄소년단', 'DNA', 'LOVEYOURSELF_承_Her']
910996549953638406
Thu Sep 21 22:37:57 +0000 2017
RT @FlechadaxGG: "No soy sólo un flequillo bonito" #GonzaGravanoEnFans
758441462946205696
aylu🐒
AgusSmileGonza
['GonzaGravanoEnFans']
910996549961945088
Thu Sep 21 22:37:57 +0000 2017
RT @somoselpuente: Gracias a todas por participar un día más en #EllasParan Nos vemos en la próxima con nuestra querida… 
2922642592
Maria Tarancon
tarancon_m
['EllasParan']
910996549961994240
Thu Sep 21 22:37:57 +0000 2017
RT @Amber02150: 🍃A lovely family 😍
🍃Going for a walk 🍃🍃🍃🍃 https://t.co/uCdQavwaYN
48710389
Jeff Chase
LeftyChase66
[]
910996549928407040
Thu Sep 21 22:37:57 +0000 2017
@Complex https://t.co/8FrvLqMjWj
890664457868804096
Rog Neesh
rogxneesh
[]
910996549941055489
Thu Sep 21 22:37:57 +0000 2017
Isso aí dougraaas raça nessa porra
3465496517
Gabriel
GB__FFC
[]
910996549961793536
Thu Sep 21 22:37:57 +0000 2017
RT @SportsCenter: This Just In: Test shows that Aaron Hernandez had advanced stages of CTE. https://t.co/J09jpVvRO4
1387628154
Dae XI
sweetdaddywilly
[]
910996554130923520
Thu Sep 21 22:37:58 +0000 2017
RT @LILBTHEBASEDGOD: IF BLACK PEOPLE GOT IT SO GOOD AND EQUAL WHY DONT WHITE PEOPLE VACATION TO THE HOOD OR EAST OAKALND CA WITH YOUNG BLAC…
163246280
karate tortoise
heart_gold
[]
910996554122588160
Thu Sep 21 22:37:58 +0000 2017
@kubo3618 酷い人だなあ、泣かせるなんて
899825205471723520
🎀
c_m3u
[]
910996554122702848
Thu Sep 21 22:37:58 +0000 2017
@tonjukuk 😂😂😂
45960102
Emrah ŞAHAN 𐱅𐰇𐰼𐰜
nuri_verco
[]
910996554160340992
Thu Sep 21 22:37:58 +0000 2017
@sora_onigiri よすよすー
785451767500648449
💋 mf(みっふぃー)
miffyabs
[]
910996554151948289
Thu Sep 21 22:37:58 +0000 2017
RT @7eP3Wofyfn8Y94m: これは笑ったwwwwwww https://t.co/i2vdZWP1yA
822061804054454272
チャン⊿
chan_nanase0601
[]
910996554160459776
Thu Sep 21 22:37:58 +0000 2017
Cuando dijeron Gh revolución se referían a Gh mojón, no? #Gala2GH
1477177332
Noelia
NoeliaDiax
['Gala2GH']
910996554156093440
Thu Sep 21 22:37:58 +0000 2017
@yatorie おはようございます!
715085212393148416
teketeke  (テケ)
maishimablack
[]
910996554126827520
Thu Sep 21 22:37:58 +0000 2017
@rlthingy Iya tp kimia di SMA itu msh dasar bgt. Gabakal bisa buat kepake lama dikuliah nanti. Ini sih pengalaman aku aja ya
725922205507325953
Cinthya
stadibler
[]
910996554143723520
Thu Sep 21 22:37:58 +0000 2017
@realDonaldTrump To General Kelly, Sir.
896448008690188288
Mary H Henckel
HenckelMH
[]
910996554135113728
Thu Sep 21 22:37:58 +0000 2017
@Mangel2020 @caligeorgee What are some left wing ideas that can destroy our country?
21449972
Heretic
Heretic_Soul
[]
910996554143559680
Thu Sep 21 22:37:58 +0000 2017
さんんんんむ
4656091584
犬🌈
DM_GE_Bz
[]
910996554135126016
Thu Sep 21 22:37:58 +0000 2017
RT @INDIEWASHERE: me after i make a vine reference irl and no one understands it https://t.co/hnxjGfDMnD
900490099615346688
angel
theangeltijero
[]
910996554126782464
Thu Sep 21 22:37:58 +0000 2017
おはようございます!

今日乗り切れば明日はガイシホールでアリーナツアー!!

がんばろーーっと( ̄^ ̄)
802521600184586240
まっぷる
map1_nmb4
[]
910996554147815424
Thu Sep 21 22:37:58 +0000 2017
ひらめきメモ https://t.co/QxUS41GBDQ このサイトを使って、自分の興味ある単語をつぶやいている人を検索し、一括フォローして挨拶してみる。多分 followmejp よりも効果的に気の合うフォロワーさんを増やせるとおもいますよ!(=゚ω゚)ノ
373219707
Nori_bot
Nori_bot1
[]
910996554156269568
Thu Sep 21 22:37:58 +0000 2017
RT @rezox: when the teacher is mad at you and you can’t stop laughing lol
120499046
YoungShy. 👑
HighImShyla
[]
910996554151948288
Thu Sep 21 22:37:58 +0000 2017
RT @root454: 【衆院解散】不倫疑惑で民進党を離党したガソリーヌ山尾、無所属で立候補の意向を固める 愛知7区

https://t.co/Rkb65mAYti

信じられねぇ❗出るんだ❗
愛知7区民よ頼んだぜ❗こいつは当選させちゃなんね。追及も済んでねぇしな。
337568336
x1975spark
x1975spark
[]
910996554147860480
Thu Sep 21 22:37:58 +0000 2017
RT @tricolor_faland: JÁ QUERO UM GOL, VAMOS FLUMINENSE
584283967
A+
ffcAline
[]
910996554152136704
Thu Sep 21 22:37:58 +0000 2017
The latest falaRSE diario! https://t.co/2hG6Z4qtC2 Thanks to @crtvg #viral
242773299
falaRSE
falaRSE
['viral']
910996554147782656
Thu Sep 21 22:37:58 +0000 2017
RT @imjayu: 개구리공주 츠유 디즈니풍으로! https://t.co/FrYnUIkHgN
1442367445
光莉
hikari1216ai
[]
910996554139537410
Thu Sep 21 22:37:58 +0000 2017
ربي جنات تجري من تحتها الأنهار لعبدك  #احمد_اسماعيل_السويدي
895615215857008640
صدقة لأحمد اسماعيل
ahmad_asmail1
['احمد_اسماعيل_السويدي']
910996554131152896
Thu Sep 21 22:37:58 +0000 2017
RT @neiltyson: Maybe it’s just me, but it seems that wanting to conserve the environment would be one of the things “Conservatives” do.
211168122
Paul Shread
paulshread
[]
910996554147799040
Thu Sep 21 22:37:58 +0000 2017
RT @PattyMurray: Proud to stand w DACA recipients in WA &amp; nationwide—we won’t stop until we cross the finish line #DefendDACA https://t.co/…
1057080500
Justin Esparza
kahruveldesign
['DefendDACA']
910996554147930113
Thu Sep 21 22:37:58 +0000 2017
RT @Domyenn: These is bloody nails https://t.co/LDQuxoAWRA
601769956
Livai A.⚔️
pearlynextdoor
[]
910996554131099649
Thu Sep 21 22:37:58 +0000 2017
Eu to muito puto pq tive de ficar inventando desculpa novamente pq ele nao apareceu
478829296
Livvy Rainha
shadowhuntewrs
[]
910996554126909442
Thu Sep 21 22:37:58 +0000 2017
@TheBiancaDelRio You liked it and I'm crying. This is why I will need to being tissues to your show. #happytears
353826707
Karolina W Koston
BlackAttract
['happytears']
910996554131148800
Thu Sep 21 22:37:58 +0000 2017
RT @loadedchakra: Sunshine tapestries makes me happy 😊 https://t.co/YodWEGC7Qj
705557038634504192
Art
iadoreartwork
[]
910996554147926016
Thu Sep 21 22:37:58 +0000 2017
RT @o_23oh: #العلاوه_السنويه آيات من القرآن الكريم تشفي مافي الصدور ، استمع اليها قلبك لتخشع https://t.co/XHzp80Y4mE
720989456942112769
ابوريان البشري
ali1396qa1
['العلاوه_السنويه']
910996554131103744
Thu Sep 21 22:37:58 +0000 2017
RT @AntonioMaestre: Ahora que el PP señala a disidentes ha dejado de llamarse acoso https://t.co/uBFWrlbpFa
967845704
Josep Lluís García
JLLGarciaS
[]
910996554139308032
Thu Sep 21 22:37:58 +0000 2017
@AngelPostHuman その点は同意しかないな
東大は早さ、京大はパワーを見てる感じ
494158273
数理少年@雨宮天昼夜
re_minder_xx
[]
910996554131132416
Thu Sep 21 22:37:58 +0000 2017
RT @odedonafrida: Um animal, este Samaris... https://t.co/OKFBOSBApA
1674066337
G E R S O N®
gersonsantos05
[]
910996554139410432
Thu Sep 21 22:37:58 +0000 2017
@chunithm_rian 了解です✨
DM失礼しますっ😆💞🙌
815216633388011521
ぱおぱお💙🖤❤️💛💚
MTetQPGd0uDshH6
[]
910996554122715136
Thu Sep 21 22:37:58 +0000 2017
@uZk35cG9ZjIFkwW 🌹
910531813118013440
راقين
mNbc4eQ78YLrCvx
[]
910996554135359489
Thu Sep 21 22:37:58 +0000 2017
RT @TodosPescamos: SQM: Longueira será reformalizado por Cohecho y Delito Tributario&gt; Esperamos verlo así en cana x su #LeydePesca!!!… 
169129489
M.Rojas
guelorojas
['LeydePesca']
910996554126909443
Thu Sep 21 22:37:58 +0000 2017
RT @Jalopnik: Here's how Volkswagen's new "Budack Cycle" engine works https://t.co/JbyP3FbU6W https://t.co/7unen9HKeR
635625315
Francesc G.M.
fgmestres
[]
910996554122743809
Thu Sep 21 22:37:58 +0000 2017
RT @WMChile: ¡Tiki Tiki Ti! En este #Cumpleaños de Chile nos prendemos con terremoto, chicha, empanadas y #3AM de Jesse y Joy… 
1486574322
Sofia Mendes J&J
sofiahenriesco
['Cumpleaños', '3AM']
910996554156306432
Thu Sep 21 22:37:58 +0000 2017
RT @JehuPi: Cuanto maldito desprecio por la vida; trabes con armex, columnas de 0.40m con sólo 4 varillas, traslapes de 6cm, re… 
45462184
Sandra Serret
Sandrapastrosa
[]
910996554160390144
Thu Sep 21 22:37:58 +0000 2017
RT @zisung_C: 심멎주의구간 https://t.co/704cwVcVkW
861724758982840320
미융
annie8280
[]
910996554135277568
Thu Sep 21 22:37:58 +0000 2017
RT @emancipator_nl: Foto's als deze maken pijnlijk duidelijk dat #genderneutraliteit belangrijk is, zeker voor kinderkleding https://t.co/q…
706426607028871168
LGBT
lgbtlgbtlgbtlg1
['genderneutraliteit']
910996554143666176
Thu Sep 21 22:37:58 +0000 2017
RT @keisyvandenbrab: Y azúcar https://t.co/Nmhm44rhuj
3003510689
mary🐊
ArganarazMary
[]
910996554143735808
Thu Sep 21 22:37:58 +0000 2017
•uploads to Instagram on a fresh account• https://t.co/YDvwBaTImx
892546604682686464
— ᴍɪᴀ ʜᴏᴜsᴛᴏɴ.
BlaseBlonde
[]
910996554147930112
Thu Sep 21 22:37:58 +0000 2017
5/12 https://t.co/M1UgNThKk9
610317847
محمد بدر
Mohammed_Baderg
[]
910996554130931712
Thu Sep 21 22:37:58 +0000 2017
“Touch me, and the only thing you’re going to feel is a broken jaw."

▪️Experienced Writer
▪️Seeking new SLs [Marve… https://t.co/LLF9kAwEQN
860606059932655616
Gamora.
DeadIiestWoman
[]
910996554122760193
Thu Sep 21 22:37:58 +0000 2017
RT @nytimesworld: Humans are the biggest threats to African elephants https://t.co/YzPQWBbtBA
288394747
Naz Musa
Naz132
[]
910996554131132418
Thu Sep 21 22:37:58 +0000 2017
RT @AlexPerezRD: Cuanta irresponsabilidad por parte de estos jovenes; tanto esfuerzo que hace el gobierno por preservar vidas… 
138222463
Jacinto Alb. Berges
jacintoberges
[]
910996558329430016
Thu Sep 21 22:37:59 +0000 2017
RT @LylaRevilla: I'm not high https://t.co/9ZXZCXfY1f
790390551602311170
Astrø 🦋🌙
MistyPsycho
[]
910996558321033218
Thu Sep 21 22:37:59 +0000 2017
RT @montse131958: @Inma64She @sanijo92 @SrTentaciones @katysuamo @41Glvez @mvdafm @XaviAndorra @CetinaVela @GRET4_ @ESTHERBLQU… 
284568075
SANDRA
sanijo92
[]
910996558325436416
Thu Sep 21 22:37:59 +0000 2017
RT @alzain_____Q8: @BONAYEFQ811 وانا اقوله
يا ماخذ كل الشعور يا فزّة قلبي وفرحته
716968214593466369
أبـونـايـف 🇰🇼
BONAYEFQ811
[]
910996558350393344
Thu Sep 21 22:37:59 +0000 2017
戻ってくるのが遅くなってごめん。待たせてごめん。悲しませてごめん。
374565885
タカミ・テオ
takami_teo
[]
910996558337908736
Thu Sep 21 22:37:59 +0000 2017
@SyrenDeMerXXX @MINI Great choice what about a pic of you in it?
879252272256917506
Donny
Donnyj9898
[]
910996558350516224
Thu Sep 21 22:37:59 +0000 2017
RT @A06015617: راحت سنة بكل ما فيها
بأحزانها وأمانيها              
وجت سنة جديدة
أتمنى فيها ربي يحقق أمانينا💛😙🍃
.
.#صباح_الخير🌺
1421718828
طيف روح
ttiiff0
['صباح_الخير']
910996558346313728
Thu Sep 21 22:37:59 +0000 2017
RT @mariobautista_: Gracias a todos los fandoms en general que se están uniendo ⚡️🙏🏻

La unión hace la fuerza 🇲🇽 https://t.co/V44pkL78dy
757711438911713280
Alondra Chavez 🍒
Alondra_chavezM
[]
910996558346407936
Thu Sep 21 22:37:59 +0000 2017
RT @FanFujoshiGirl: @1D_PortalDirect Ainda não desisti.
#MPN #HarryStyles #SignOfTheTimes #SignOfTheTimesClipe
906319381495513088
Kiara Venício
kiara1DLTHS
['MPN', 'HarryStyles', 'SignOfTheTimes', 'SignOfTheTimesClipe']
910996558329544709
Thu Sep 21 22:37:59 +0000 2017
RT @gabrielemos97: I'll have 2 number 9s, a number 9 large, a number 6 with extra dip, a number 7, two number 45s, one with cheese, and a l…
1958692483
Trevor's Wife
xyosoylupi
[]
910996558333775878
Thu Sep 21 22:37:59 +0000 2017
@Calimer64240993 Oui c'est mieux 😊
878132746085859328
morganedetoi
PetiteNath1
[]
910996558325334016
Thu Sep 21 22:37:59 +0000 2017
ナイス 知人がガラケーでLINEを始めたら1日で2000円のデータ量が積算されてぶっ飛んだと聞きました。スマホでギガレベルでデータ通信をしていることを今更ながら実感しました。世の中はアナログへの… → https://t.co/8PDpob2F6W #bookmeter
3267004770
どぶねずみ
ChonanMifa
['bookmeter']
910996558350610433
Thu Sep 21 22:37:59 +0000 2017
@santosmatheeus1 Vc fala isso desde qnd eu tinha cabelo grande
2395425488
kel
hildekelsouza
[]
910996558346297344
Thu Sep 21 22:37:59 +0000 2017
異世界オルガ10 (00:04:49) #sm31969564 https://t.co/970RjBUtIU

新作来てるじゃねぇか。
案外当たんじゃねぇか…。
134360974
内側しらうはドロシーとビールがお好き
utigawasirau
['sm31969564']
910996558342127616
Thu Sep 21 22:37:59 +0000 2017
RT @HablamosdeTv: Me estoy emocionando leyendo en el HT momentos de la historia de Gran Hermano. Increíble la voz de las redes. Sois GH. #R…
4818167644
Martude🐬
MartudeGh
[]
910996558325387264
Thu Sep 21 22:37:59 +0000 2017
RT @AP: BREAKING: North Korea state news agency: Kim Jong Un calls Trump "deranged," says he will "pay dearly" for his threats.
860691823
ALL4TRUMP
LOYALtoTRUMP
[]
910996558325284864
Thu Sep 21 22:37:59 +0000 2017
yessss https://t.co/azZm8PhmW0
4891097639
Vince
LeviSorrera
[]
910996558329630720
Thu Sep 21 22:37:59 +0000 2017
RT @maudegarrett: When you're photobombed by.... you. https://t.co/k4eWCg60Do
3558749296
B Funk
c_dog6
[]
910996558329647104
Thu Sep 21 22:37:59 +0000 2017
@kijnkyboots This is why we don't choke me
811899516370714624
Mommy material
YelyahParamcre
[]
910996558329544710
Thu Sep 21 22:37:59 +0000 2017
@TomasVilches_ En google tiene q haber seguro
605023088
GĐØ
guidoferrari8
[]
910996558317019136
Thu Sep 21 22:37:59 +0000 2017
Ya ni me importa lo que me digan la verdad
772506287112347650
L
Leandro_Pazz
[]
910996558333857793
Thu Sep 21 22:37:59 +0000 2017
RT @CARPoficial: 13' PT Con un gran remate dentro del área, Scocco pone el 2-0. #LaFuerzaDelMásGrande ⚪️🔴⚪️ https://t.co/50IwHhcU6g
2745181551
Agustín
AgustinBogao
['LaFuerzaDelMásGrande']
910996558321274881
Thu Sep 21 22:37:59 +0000 2017
RT @JehuPi: Cuanto maldito desprecio por la vida; trabes con armex, columnas de 0.40m con sólo 4 varillas, traslapes de 6cm, re… 
113219653
Rodrigo Sánchez
Rodrisimo
[]
910996558337990657
Thu Sep 21 22:37:59 +0000 2017
RT @erna_solberg: @Kontorrotta77 @ingebrigtdalseg @sandoy_sand @SV_Karin @Regjeringen Kanskje lurt å få med seg at UNEs vedtak stamme… 
740807653
Ruth-Hanne Kvithyll
KvithyllRuth
[]
910996558338035713
Thu Sep 21 22:37:59 +0000 2017
RT @McCarrenBill: @findtanadonor @maureensmith232 Thank you so much for that 😊 sending love rite back to you! https://t.co/j8Cz8yoiCz
763168867371843584
Deshaun Properties C
maureensmith232
[]
910996558329597952
Thu Sep 21 22:37:59 +0000 2017
Then, as suddenly and violently as an explosion, the man calling himself Doomfist appeared.
867238871607783424
Suspicious Popsicle
flufandnonsense
[]
910996558346424320
Thu Sep 21 22:37:59 +0000 2017
RT @Eliaswbm: Inventos del 2017

- Frida Sofia
- Marcelo Bielsa
3210522371
Wiss.             🗯
Sicoticx
[]
910996558316998656
Thu Sep 21 22:37:59 +0000 2017
https://t.co/B5dwNcWnY2
4846705894
Lila
lilacnymph
[]
910996558317068289
Thu Sep 21 22:37:59 +0000 2017
RT @itsKARY_: If you don’t remember this fight, you’re too young. https://t.co/718eo48CFA
28258031
Christopher Tracey
TRACEYkicksCULO
[]
910996558321274880
Thu Sep 21 22:37:59 +0000 2017
RT @lauroreis131: amanhã já é sexta-feira finalmente fds
808452395118329856
Filipa
SoraiaS1720
[]
910996558338035712
Thu Sep 21 22:37:59 +0000 2017
RT @NoticiasVenezue: ¡LO ÚLTIMO! Guevara y Ortega Díaz investigarían presunta financiación venezolana al partido español “Podemos”… 
2165059499
blackglass
6tarepublicav
[]
910996558338019328
Thu Sep 21 22:37:59 +0000 2017
Okay who said I deserve a boy who surprises me by staying up all night to paint me an Alpha Chi alien banner? I'm i… https://t.co/thPJFNhyf4
325007957
kellie cαtron
ShotsOfCatron
[]
910996562528026624
Thu Sep 21 22:38:00 +0000 2017
【定期】企画用ブログはプロフィールから飛べます。
370394564
SJタオル
__sjtowel
[]
910996562532196354
Thu Sep 21 22:38:00 +0000 2017
@newptuno 좋은아침이에요
1110145290
구원의마도학자-하루카(10+9/20)
Remilias_
[]
910996562532220928
Thu Sep 21 22:38:00 +0000 2017
sometimes it's really hard to believe that everything happens for a reason.
803299316370579456
🅱 A S I C
BasicFheels
[]
910996562519711744
Thu Sep 21 22:38:00 +0000 2017
#GradaWorten Dejaron escapar al desatascador Morata
910644048653889536
Abraham rueda
Abrahamrueda14
['GradaWorten']
910996562532229120
Thu Sep 21 22:38:00 +0000 2017
RT @salman_a3883: @taifcci يالسعوديه دام عزك شامخ والدين سيرة
.
ايه احبك يا بلادي دون شك ودون حيره🇸🇦🇸🇦
.
.… 
910986651416981504
Jae Smith
jaesmith1135
[]
910996562548899840
Thu Sep 21 22:38:00 +0000 2017
@celsior__23 ありがとうです🎵(⌒‐⌒)
2839438626
ユミシーマ
yumicima
[]
910996562548887552
Thu Sep 21 22:38:00 +0000 2017
RT @CYsBeAENRceAxtp: مدرس وطالبه واحلا نيك مقابل ينجحها رووعه

https://t.co/1LxX3cqmNy

#سكس
-e0l https://t.co/lteh22yTPg  https://t.co/6mU…
843269975452409856
شريف
pl5saOaRwdhmvUt
['سكس']
910996562549100544
Thu Sep 21 22:38:00 +0000 2017
#مباراه_بيروزي_يا_هلال تكفون لقد هرمنا 😢🔥💔
412209270
#هلالي_مدريدي
r2shed_711
['مباراه_بيروزي_يا_هلال']
910996562549116929
Thu Sep 21 22:38:00 +0000 2017
RT @TypicalGlRL: It's that time again 😂 https://t.co/cevHaHwjnf https://t.co/vTRLIKlbMC
826258394264788992
hayleeee
hahahayyyyyyy
[]
910996562511368193
Thu Sep 21 22:38:00 +0000 2017
RT @Kn2Gio: ماعرفت طعم السمراء الا بعد ماجربتها 
 https://t.co/Lhu7soO1lj
765801111047532545
هاجر 💕
jojo20ee
[]
910996562532212736
Thu Sep 21 22:38:00 +0000 2017
RT @MattOswaltVA: in any other year the sentence "I agree with the guy who fed his uncle to wild dogs and gets advice from Dennis Rod… 
15935797
Frank Nuñez III✌🌹🎥
FrankNunezIII
[]
910996562515517440
Thu Sep 21 22:38:00 +0000 2017
vou ir parti pro shopping
2766261352
+d
opss_danny_
[]
910996562540711938
Thu Sep 21 22:38:00 +0000 2017
RT @AlbertoChagas12: @Rafa_the_love obviamente
717020096653295616
🌸
Rafa_the_love
[]
910996562544857088
Thu Sep 21 22:38:00 +0000 2017
RT @maddyfgibson: What college actually is like https://t.co/xlRTEfxyR6
4886142561
#DefendDACA
Lithium3Li
[]
910996562532290560
Thu Sep 21 22:38:00 +0000 2017
this shit is boring remember why i left
844945146898759681
Justin
bootymilks
[]
910996562544906240
Thu Sep 21 22:38:00 +0000 2017
#كلام_معلمين_الخميس
لسه فى كمان
3906979339
زلابيه♥المعلمين:^)♑
NadenSamir13
['كلام_معلمين_الخميس']
910996562523721728
Thu Sep 21 22:38:00 +0000 2017
RT @BTS_twt: 💕😆 https://t.co/aK3fMYg6qM
495628400
NANDHA
RinandhaAznis
[]
910996562519748608
Thu Sep 21 22:38:00 +0000 2017
RT @ItsGreysHumor: I wish 😭 https://t.co/bkzesHSrAH
4821440473
γαμ¹
yammyyoodle
[]
910996562511319041
Thu Sep 21 22:38:00 +0000 2017
@andyreid2506 Happy Birthday 🎁🎂
882320796
Neil Connolly
neilc5017
[]
910996562532294656
Thu Sep 21 22:38:00 +0000 2017
RT @workwthecoach: “Don’t be in a hurry to condemn because he doesn’t do what you do or think as you think or as fast.” #X https://t.co/D10…
850703676738023424
Aniyah Adams
drobinina95w
['X']
910996562540683264
Thu Sep 21 22:38:00 +0000 2017
He añadido un vídeo a una lista de reproducción de @YouTube (https://t.co/iyT8TOKXBY - Les Play Outlast Delux Edition + Hardmode
4149429940
MalgorsTV
MalgorsTV
[]
910996562528096257
Thu Sep 21 22:38:00 +0000 2017
RT @HusseinMayyada: أنتة بمهجة العاشك..ضميره وثورته ودينه

واليعرف محبة أحسين..ميكَدر يترك حسينه

تصير أيامك أيامه..وتساير دم شرايينه… 
2799768405
Nesreen
Fitni__salam
[]
910996562515566592
Thu Sep 21 22:38:00 +0000 2017
Y Sam que me muero, chama #u
772506700536508418
audré
franceunnie
['u']
910996562515513344
Thu Sep 21 22:38:00 +0000 2017
RT @luanlovato: scalene mandando vê bonito no rock in rio #ScaleneNoMultishow
3399421114
bia
BiancaFontana__
['ScaleneNoMultishow']
910996562532323329
Thu Sep 21 22:38:00 +0000 2017
RT @NestleMX: #FuerzaMéxico Enviaremos 300 toneladas de alimento equivalente a 3 millones de porciones para personas y mascotas:… 
148848514
Juan©arlos Osornio
Osorniojc
['FuerzaMéxico']
910996562536484864
Thu Sep 21 22:38:00 +0000 2017
This woman!! 😂😂😂 https://t.co/3kg7vOZ8UV
2539171424
iSpeakMyMind
AishaMulla4
[]
910996562544697344
Thu Sep 21 22:38:00 +0000 2017
They still got firefly phones ? Cus that's the only phone my kid gone get lmao https://t.co/LunQEJ4SGI
2812447902
PRINCESS
Marinaveee_
[]
910996562532290561
Thu Sep 21 22:38:00 +0000 2017
Un gol del Wilstermann y silencian ese estadio, aunq asi como juegan todos nerviosos jodido es q pase
834567826086227968
Maloso
BscYiko
[]
910996562536550401
Thu Sep 21 22:38:00 +0000 2017
(نحن خلقناهم وشددنا أسرهم وإذا شئنا بدلنا أمثالهم تبديلا) [الانسان:28]
2592783398
السلطان ✌️
Citizenq8i
[]
910996562511384577
Thu Sep 21 22:38:00 +0000 2017
@Miguel_Moya_R Vecinos*
395529174
Vanessa Aguilar
Vanessaguilar98
[]
910996562528018432
Thu Sep 21 22:38:00 +0000 2017
スマホRPGは今これをやってるよ。今のジョブはこれ! https://t.co/Z5soFXBvPR
881033668180885504
グラン
gbf916pillows
[]
910996562544865280
Thu Sep 21 22:38:00 +0000 2017
@r0RzEgWfkkOYfzt غالباًأقوى الأشخاص كثير الصمت وأكثرهم حكمة.
3008263873
رحيل الأمنيات
besh_a31
[]
910996562515578882
Thu Sep 21 22:38:00 +0000 2017
@chuckwoolery Funny read: Huff Post review of her book. 😄
406484546
Cat
texcat9
[]
910996562519748609
Thu Sep 21 22:38:00 +0000 2017
COMIENZA EL PARTIDO | @LDU_Oficial 0-0 @FluminenseFC
288933139
Xavier Bucheli Terán
XaviBuTe
[]
910996562515460097
Thu Sep 21 22:38:00 +0000 2017
@ShadownexEdge  https://t.co/ijYxqvElno
852198462372315136
montebello5
bukostan
[]
910996562515419136
Thu Sep 21 22:38:00 +0000 2017
りつくん生誕祭(´Д` )イェァと思ってあんスタガチャを単発1回だけで引いたんだよ(石がないから)
ほんとびっくりん子菊池凛子ですわ( ˙꒳​˙ )つむぎくんんんん? https://t.co/0ETKYAMkKj
896381920338001920
もすみつき🌱
mosumituki23
[]
910996566726414337
Thu Sep 21 22:38:01 +0000 2017
RT @notekse: โดนควยใหญ่ 2 ควยรุมเย็ด เสียวสัสๆ คนนึง 9นิ้ว คนนึง 8 นิ้ว   https://t.co/uULNNaaR42
893520021514616832
Supoj
Supoj27175996
[]
910996566734864384
Thu Sep 21 22:38:01 +0000 2017
@tomatoo0o0 ありがとー!ぽちは来てますか?
754536851302551552
東京大破壊(NEUTRAL)
mellisa_Atomos
[]
910996566713843712
Thu Sep 21 22:38:01 +0000 2017
RT @NEEDUBABY_V: PREVIEW 💖
170922 🦄️✨

#BTS #V
#뷔 #태태 #태형 
#방탄소년단 @BTS_twt https://t.co/hiSlMCr0l5
725255220880498688
전정국 왜 안파 ?
dayoung8262
['BTS', 'V', '뷔', '태태', '태형', '방탄소년단']
910996566743371776
Thu Sep 21 22:38:01 +0000 2017
RT @fofo_5597: مين فينا حدد لون عينيه ويوم ولادته واسمه ايه في حاجات كتير كدة في الحياة موجودة ومنعرفش ليه ❤️
3915320255
PenseeMaghrabyy
PenseeMaghrabyy
[]
910996566743277570
Thu Sep 21 22:38:01 +0000 2017
RT @slobovaskovic: Stojčinović "pao" zbog Grčke ulice; Kasipović treba podnijeti ostavku
https://t.co/AjMT6nyLuH
30444879
Will Marrero
MarreroWill
[]
910996566726516736
Thu Sep 21 22:38:01 +0000 2017
@tsugumom 残念、はずれです!
明日もチャレンジしてください(^^)
https://t.co/xnQg5XvN3v
115639376
ローソン
akiko_lawson
[]
910996566718210048
Thu Sep 21 22:38:01 +0000 2017
RT @Rak1941: نشط: #النصر_الفيحاء
794093351498870784
Karol dillon
karol_dillon
['النصر_الفيحاء']
910996566730616832
Thu Sep 21 22:38:01 +0000 2017
RT @makmummasjid: ciri minimarket bagus

- ada atmnya
- parkir gratis
- kulkas yg isi mogu-mogu lecinya dingin
2185564070
meyㅅ.
exoxo61
[]
910996566743195648
Thu Sep 21 22:38:01 +0000 2017
RT @PeachDaisy47: レッスンおつかれさまでしたん!

事務所の先輩たちと沢山お話し出来て嬉しかった😊

@ken521521 https://t.co/KbyJIJrXtv
360577826
ろはす(頑張っている皆さんを応援したい)
LOHAS_LOHAS____
[]
910996566743277571
Thu Sep 21 22:38:01 +0000 2017
RT @rosedanik: [HQ] 170921 인천공항 출국
#강다니엘 #KangDaniel #워너원 #WANNAONE 

삥쿠삥쿠한 다녤. 안경. 소매. 핑크. 카라 접힌거 까지 넘 귀여워서 정신을 못차리고 있습니다. https://t.co/eO…
2908041674
N
scx_ty
['강다니엘', 'KangDaniel', '워너원', 'WANNAONE']
910996566709698561
Thu Sep 21 22:38:01 +0000 2017
うちのすぐ近くから大きな虹🌈がかかってた!朝から良いもの見れた!
241069027
ゆきぽん
yukipon81
[]
910996566705528832
Thu Sep 21 22:38:01 +0000 2017
RT @slobovaskovic: Korak do Raskola Dodik-Radmanović https://t.co/aURzTgcARN
112230461
Kelly Moore
KellyMoorePhoto
[]
910996566726598656
Thu Sep 21 22:38:01 +0000 2017
سبحان الله وبحمده سبحان الله العظيم
♻️ https://t.co/XYTafGigum
3922893634
صدقه جاريه.
majed767373
[]
910996566709809152
Thu Sep 21 22:38:01 +0000 2017
@aninhazinhanha Eu não
54282661
João Paulo
jpon28
[]
910996566726643714
Thu Sep 21 22:38:01 +0000 2017
RT @thomasyeets: @clarissamariee_ HAPPY BORN DAY🎉 more life to ya
606089480
clari🎃✨
clarissamariee_
[]
910996566709870595
Thu Sep 21 22:38:01 +0000 2017
RT @324cat: El consell regional de Sardenya aprova per majoria una resolució en solidaritat de Catalunya https://t.co/PKqqoH8nf2 https://t.…
86965825
Vinyet Panyella
vinyetp
[]
910996566734974977
Thu Sep 21 22:38:01 +0000 2017
RT @HIBACHI____: Everybody who didn't switch from Facebook to twitter in high school ended up getting pregnant
627212847
chris △⃒⃘
christristan_
[]
910996566722441217
Thu Sep 21 22:38:01 +0000 2017
#NowPlaying Down To The Bottom de Dorothy ♫ https://t.co/4Od7lyJVqK
3076310709
fran
thercksizzler
['NowPlaying']
910996566726578182
Thu Sep 21 22:38:01 +0000 2017
RT @LivvieJade18: This is why I love @JosephDevries 😂😂 one of the most genuine nicest guys in the industry ngl https://t.co/YgvQf35XCw
855094938769514497
chlo
lovingdevriesxx
[]
910996566722433024
Thu Sep 21 22:38:01 +0000 2017
@Elisa_McGregor en lançant j'ai vu juste à coté que la S2 de Channel Zero était en ligne et du coup flz'ndkznfkz'nf
705050689
petit homard
avalornythorink
[]
910996566705655813
Thu Sep 21 22:38:01 +0000 2017
اللهم صل وسلم على سيدنا محمد وعلى آله وصحبه أجمعين  ♻️  https://t.co/jBXCqWxJdg
736902558053224449
دكستر❌#اوسكار👑ء
wv_on
[]
910996566722228224
Thu Sep 21 22:38:01 +0000 2017
그냥 학원갔다가 오전강의 듣고 상태보다가 와야지... 오후강의 스루해 안해... 아파...
828128001845972992
[반동결] 코뎀
Jook_lover
[]
910996566722400257
Thu Sep 21 22:38:01 +0000 2017
@makkishake @Yoru_Kun1997 IO IO IO 
(+ pivo)
133735871
oswin
shivnoda
[]
910996566726598658
Thu Sep 21 22:38:01 +0000 2017
RT @ECON_UQU: #كلية_العلوم_الاقتصادية_مستجدات https://t.co/dsvZyH6C0z
583414410
Mai khayat
mai_204
['كلية_العلوم_الاقتصادية_مستجدات']
910996566709870592
Thu Sep 21 22:38:01 +0000 2017
RT @dg7772010: رسالة صباحية:
لاتيأس فـ خزائن الله، اوسع من احلامك
3402837814
Falcon Nassar
huwk7
[]
910996566726471680
Thu Sep 21 22:38:01 +0000 2017
RT @HPrettyFaith: So may sunduang naganap pala kagabi? Hahaha.. keshe nemen eh. Gegende ng smile ni prinsesa nya eh

#PushAwardsMayWards
1141959158
Caryl Faye Batan
carylfayebatan
['PushAwardsMayWards']
910996566735048704
Thu Sep 21 22:38:01 +0000 2017
@carolinagoic el Alzheimer es una enfermedad degenerativa sin cura ni tratamiento... cuál es el plan? o es mentirita de campaña?
65258704
Dante Santoni
dante_santoni
[]
910996566705606656
Thu Sep 21 22:38:01 +0000 2017
@CloudN9neSyrup Ty for chance
2469658118
tim
irishtinker052
[]
910996566726643714
Thu Sep 21 22:38:01 +0000 2017
RT @thomasyeets: @clarissamariee_ HAPPY BORN DAY🎉 more life to ya
606089480
clari🎃✨
clarissamariee_
[]
910996566722404358
Thu Sep 21 22:38:01 +0000 2017
Hadi küstün anladık ama yastıkların suçu ne ?ayırmaya ne hakkın var...
30827463
Ayşegül✨
aysegulp
[]
910996566739161093
Thu Sep 21 22:38:01 +0000 2017
@alfredoduro1 @Jorge9Molina  https://t.co/MwmnoNNJuf
2900417520
Jose Carcamo
jscarcamo7
[]
910996566714052618
Thu Sep 21 22:38:01 +0000 2017
RT @rihanna: The Carribean, Mexico, Texas and Florida have taken some awful hits in the last few weeks! We must all do what we can to help!
808800712226377728
jenny
boyfx_
[]
910996566709800960
Thu Sep 21 22:38:01 +0000 2017
En general detesto a Arjona pero "confundiendo amor con compañía" debe ser una de las frases más reales que se han dicho nunca.
766282055244210176
Cerrajero del Diablo
Amo_Cerrajero
[]
910996566718259206
Thu Sep 21 22:38:01 +0000 2017
@USATODAY Cat5 storms - check. earthquakes check. Forest fires- check. and cats and dogs living together (check the… https://t.co/l6oRyXMsXd
173167727
Cerebral Dormancy
CerebraldormanC
[]
910996566722383874
Thu Sep 21 22:38:01 +0000 2017
RT @Mere_Recruiter: Our Air Force Analytics team is looking for Data Scientists #boozallen #machinelearning #datascience… 
888245496405344256
Deus ex machina
deusex_mac
['boozallen', 'machinelearning', 'datascience']
910996566726660102
Thu Sep 21 22:38:01 +0000 2017
RT @3bh___: اللهم قلباً صلباً لا يتأثر بتقلبات الحياة .!

#عذب_الكلام_للدعم
902940401417539585
🔺 حساب الاداره 🔺
osLOVE22
['عذب_الكلام_للدعم']
910996566730772480
Thu Sep 21 22:38:01 +0000 2017
RT @DemolaOjo: You've defended Tinubu, Fashola, OBJ and El Rufai with their phantom performances, and somehow you think those defe… 
233090701
Zina
alysynkene
[]
910996566743355393
Thu Sep 21 22:38:01 +0000 2017
RT @ChampagneMalc: This is how you open a film. https://t.co/Y7qi9JTnXv
4074350420
SHAMOO⛈
2_LIVEEEE
[]
910996566722441216
Thu Sep 21 22:38:01 +0000 2017
RT @Sex_Diosa: Si Gustas Escribeme al DM, y si Tienes Totos Hot Mejor, Acá mi Perfil XXX ?? Contactame-&gt; https://t.co/6JNFa7MxnU https://t.…
1072332727
Instagram Hot Girls
LondonAngel8
[]
910996566739009536
Thu Sep 21 22:38:01 +0000 2017
【結婚適正度は何点?】

いずれ結婚したい!!
その前に、自分は何が足りないのか、
自分におすすめの相手は?

→https://t.co/BdAefEFiFK

20才以上って設定すれば誰でもできるよ! https://t.co/ItiKutGq8v
3256181114
【画像】V系☆イケメンまとめ
visual_pic0101
[]
910996566709817344
Thu Sep 21 22:38:01 +0000 2017
RT @pauloricardo22_: será que é mais um gol de falta ???
3313881731
dlua #NPQ
probzzMr
[]
910996566743277568
Thu Sep 21 22:38:01 +0000 2017
RT @sudsapda: มีอะไรจะบอก...วีคหน้าสุดฯจะปล่อยคลิปเบื้องหลัง #Sudsapda_BamBam ละน้า ติดตามในแฟนเพจ สุดสัปดาห์แฟนคลับ ให้ดีๆนะจ๊ะ /ถ้าจะหวีด…
498779493
Ladda S.
pui_laddawan
['Sudsapda_BamBam']
910996566743404544
Thu Sep 21 22:38:01 +0000 2017
@NickWilliamWard @theintercept @BernieSanders @mehdirhasan The Russians stole the election from Hillary! Need heari… https://t.co/8gIqXrdp7b
872292482943520772
Al N Franken
AlsFranken
[]
910996562511257600
Thu Sep 21 22:38:00 +0000 2017
En primavera, el corazón de Sheldon late más fuerte que nunca y es contagioso. #Palermo #food #drinks #livemusic https://t.co/s0Li1JPy5N
860035250
Sheldon Bar
SheldonBar
['Palermo', 'food', 'drinks', 'livemusic']
910996566739210249
Thu Sep 21 22:38:01 +0000 2017
Entendam https://t.co/ne05dBPdfU
264944802
Juliana Schmidt
juju_schmidt_
[]
910996566713958400
Thu Sep 21 22:38:01 +0000 2017
Very nice encounter between cultures &amp; dreams/doers at #InnovationKnowsNoBorders event in #Berlin! #Cameroon… https://t.co/fIKjDK2FNE
238130111
Jean Paul B. Affana
jpbrice
['InnovationKnowsNoBorders', 'Berlin', 'Cameroon']
910996566718136320
Thu Sep 21 22:38:01 +0000 2017
this is how i stopped being a vegetarian hahaha https://t.co/sKGrlivuJB
265719138
Maddie Brown
brownmaddison
[]
910996570903953408
Thu Sep 21 22:38:02 +0000 2017
@boeotiaeye 逃げるのか?チキン(๑ ิټ ิ)
2939490842
コットン
CottonCaldron
[]
910996570899804160
Thu Sep 21 22:38:02 +0000 2017
【スタートダッシュイベ参加中★】さおのまはろcafe 配信中!!
https://t.co/0rntdrqZuA
877875418317021186
もかちょこみるきー
psp_dopi
[]
910996570912440320
Thu Sep 21 22:38:02 +0000 2017
RT @Wnfmq23: 짜증 https://t.co/bxZw1sdDY3
802175994685583361
글쓰는 물고기
tamako083
[]
910996570933313536
Thu Sep 21 22:38:02 +0000 2017
え、やっば2度寝...今起きたやん!8時には家出るんよ?!待ってやばい遅刻、?(笑)
4838297952
ナタデココ🐰(固定&新タグ)
nata_top_kaigd
[]
910996570912415744
Thu Sep 21 22:38:02 +0000 2017
الفحل ينيك الصغيرات بالحمام و ينزل مني في كسهم وخرقهم.. https://t.co/Oa9yrz75r6
https://t.co/Dzni3763DR
متحرره
شراميط
مص
ZAMD
895020939116765185
Полина Орлова
polinaorlova672
[]
910996570929119232
Thu Sep 21 22:38:02 +0000 2017
RT @cintamalantalou: 延長再試合!
どっちでオナニーしたい?
どっちでセックスしたい?
選ぶの難しい❗

今野杏南
     VS
岸明日香

#今野杏南
#岸明日香
899450731509325824
音琴
cintamalantalou
['今野杏南', '岸明日香']
910996570916536320
Thu Sep 21 22:38:02 +0000 2017
すんごいやらかした
すんごいパチこいた
3082834230
m  o  e  k  a 🌹
__pinkpink_xxx_
[]
910996570916626432
Thu Sep 21 22:38:02 +0000 2017
RT @Da_iCE_HAYATE: 中野。 https://t.co/TG08fWDYWN
848580781312155648
じゅな
Da_iCE_JUNA2352
[]
910996570937614336
Thu Sep 21 22:38:02 +0000 2017
@l995O113 つまりこけたということですね?
719045737900670976
テ ト ,( 低 )
ar______ss
[]
910996570920947713
Thu Sep 21 22:38:02 +0000 2017
RT @GraysonDolan: RT FOR A FOLLOW. 

THANK YOU FOR 4 MIL. REALLY HAPPY TO HAVE ALL OF YOU GUYS HERE
3236294023
emma🎃
thankingdolans
[]
910996570929270784
Thu Sep 21 22:38:02 +0000 2017
Flipanding en la mierda xD
1171642472
Danlok | ダンロク23
Danlok23
[]
910996570903949312
Thu Sep 21 22:38:02 +0000 2017
1500位以内狙えそうに無いなぁ(˚ ˃̣̣̥ω˂̣̣̥ )
今の1500位と比べて10万ポイント差があるからこれは石使っても超えられそうにない
けど、石使わないと2000位以内も難しいからとりあえずは今の順位をキープするしかないな
1615251745
みあ🍏
_Mia_Fleur_
[]
910996570925125632
Thu Sep 21 22:38:02 +0000 2017
RT @_yeatez: it’s with a heavy heart i must tell you that greg the 25 year old drug dealer will not treat you how thomas rhett treats his w…
862110847
Taylor Pelham 👑
TaylorPelham
[]
910996570929164289
Thu Sep 21 22:38:02 +0000 2017
😂😂 https://t.co/e6oNLlNhAd
116137078
Gourvendu Saxena
gssin20
[]
910996570920730624
Thu Sep 21 22:38:02 +0000 2017
Ya vi que es de hace 6 horas! 😘 https://t.co/5KwRcAxKbi
86143931
Efrain Berry
EfrainBerry
[]
910996570916737025
Thu Sep 21 22:38:02 +0000 2017
RT @BleacherReport: KD says he's just like the rest of us https://t.co/dsktISxEaL
444820760
Lord Dondarrion.
Oliverr__
[]
910996570929336322
Thu Sep 21 22:38:02 +0000 2017
#العيسي_يسيء_للملك_فيصل 
العيسى لايتحمل الخطا وحده بل انظروا مع اللي تعاقدوا معه للطباعه فهو المصدر للاساءة ولا استبعد دويله الخمارة
821215985994756100
فهد
8hMaxntXPxjevSL
['العيسي_يسيء_للملك_فيصل']
910996570920964096
Thu Sep 21 22:38:02 +0000 2017
RT @AllRecipess: Please RT!! #recipes #food #cooking #delicious #cook #recipe Flaming Dragonfruit Cocktail https://t.co/w1Fzv6Zv1O
546037660
Nicolas GWET
Nicolasgwet
['recipes', 'food', 'cooking', 'delicious', 'cook', 'recipe']
910996570916581377
Thu Sep 21 22:38:02 +0000 2017
RT @spica051021: えりちの誕生日まであと1ヶ月だああっ!!
えりちはμ'sの推しなのでどこまでRTのびるか…
無謀ですがやってみます!
本当にRTお願いしますm(_ _)m
#絢瀬絵里生誕祭2017 
#ラブライブ 
#拡散希望… 
846171310367506432
TakaHaru
QuartetHaru
['絢瀬絵里生誕祭2017', 'ラブライブ', '拡散希望']
910996570933465089
Thu Sep 21 22:38:02 +0000 2017
RT @AllRecipess: Please RT!! #recipes #food #cooking #delicious #cook #recipe Flaming Dragonfruit Cocktail https://t.co/w1Fzv6Zv1O
825976920609288192
Ethereal Heart Fdn
EHFoundation237
['recipes', 'food', 'cooking', 'delicious', 'cook', 'recipe']
910996570933534720
Thu Sep 21 22:38:02 +0000 2017
Bench? https://t.co/tbd309zpJ9
303287951
⚒Sean⚒
SeanBurton95
[]
910996570937741314
Thu Sep 21 22:38:02 +0000 2017
RT @carlyjake: @prageru @robreiner Hey Rob, launch an investigation into how the media tries to influence elections in favor of li… 
782041195035975680
Gay Conservative
GayConservativ3
[]
910996570899808257
Thu Sep 21 22:38:02 +0000 2017
Uy, pasensiya na kagabi ☺
4034009832
Ple 💕
ANMercado23
[]
910996570908315649
Thu Sep 21 22:38:02 +0000 2017
I hate the he sounds reasonable. https://t.co/WMcYUTkw3M
886419860577820672
Cheyenne
Nutrit_Destruit
[]
910996570904104966
Thu Sep 21 22:38:02 +0000 2017
RT @yesimyildiztr: Türbanlıdan sevgilisine sakso.   https://t.co/c02tONOWq9  6567
752766101797400576
Hasan Özcan
EscobarMichea
[]
910996570908315648
Thu Sep 21 22:38:02 +0000 2017
https://t.co/zmAVe5MP0I
24839448
JONNY BLAZE
DJJONNYBLAZE09
[]
910996570916753409
Thu Sep 21 22:38:02 +0000 2017
Certas coisas aqui em casa me dão nojo
800963032956473344
Cainha
RayanadeSouza7
[]
910996570904121350
Thu Sep 21 22:38:02 +0000 2017
daria glover mother in law girl squirting cum shots 
 https://t.co/8puKXpksLJ
910497112089071616
Лера Антонова
rohelfapo1970
[]
910996570920947714
Thu Sep 21 22:38:02 +0000 2017
@Paula_White
2373925242
Aderibigbe Akande
deribigbeakande
[]
910996570937503744
Thu Sep 21 22:38:02 +0000 2017
RT @realsound_m: 長澤まさみ、“感情を失った”演技のすごみーー『散歩する侵略者』の衝撃的な輝き #長澤まさみ #散歩する侵略者 #黒沢清 https://t.co/EwvUAXGQAq https://t.co/bJZamWcWIE
756340343780454400
JOW
jow_psa
['長澤まさみ', '散歩する侵略者', '黒沢清']
910996570916704258
Thu Sep 21 22:38:02 +0000 2017
RT @esposbomb: una BOMBA el videoclip 💗🙌🏽🎥🔥🎶👑 @laliespos @LaliMusica #UnaNaOnVEVO https://t.co/wWHGy2RY71
777254786127323136
M♥O♥R♥E♥N♥A
Morena_Ariass
['UnaNaOnVEVO']
910996570916745216
Thu Sep 21 22:38:02 +0000 2017
7 layers of tiny fun with L.O.L Surprise dolls #Review https://t.co/1buKTwRqR9 via @bcmomdotca
23876489
AnnMarie Brown
ItsJustMyLifeCA
['Review']
910996570904068098
Thu Sep 21 22:38:02 +0000 2017
Online again! Text me at (406) 204-7038 for a link to sign up with $5 free credit!!! Normal texting, no app needed… https://t.co/NNuAwHDtss
889903424376123396
Teeny Ginger
TeenyGinger18
[]
910996575098331138
Thu Sep 21 22:38:03 +0000 2017
これ大好き
2272906801
おい子🚲🌸💝
oicocio
[]
910996575131856896
Thu Sep 21 22:38:03 +0000 2017
2017-09-22 07:33:02
Room Temperature: 23.710213
864303812537851904
lab_temp
lab_temp
[]
910996575127613440
Thu Sep 21 22:38:03 +0000 2017
RT @Shahirrzz: Thread ni berkenaan kawan aku yg couple dengan mamat psycho hampir setahun. Tiada tokok tambah dalam cerita ini kerana
741890724036124673
pykaa
AfiqaE
[]
910996575123468288
Thu Sep 21 22:38:03 +0000 2017
@Akarii98 ohana means family 🙂
2913122210
〔 JENNIE 〕
JENNlEkr
[]
910996575115034624
Thu Sep 21 22:38:03 +0000 2017
RT @girlideas: "Moved houses, dog has never seen stairs before" OMG 😂😂 https://t.co/vp7hImB5lv
745142552047714304
Carmen Quiñones
carmenquiinones
[]
910996575110832128
Thu Sep 21 22:38:03 +0000 2017
情報についてけてないよ!!
2174054154
📎スマ♡jump📎
24SMAP
[]
910996575102668800
Thu Sep 21 22:38:03 +0000 2017
@EMI4NEM سناب
764185805548056580
محمد
l_cule
[]
910996575123656704
Thu Sep 21 22:38:03 +0000 2017
Programa de Pós-Graduação em Odontologia Preventiva e Social. Inscrições abertas - Mestrado - 04/9/17 a 20/10/17... https://t.co/QHrukW3HxM
87473597
Biblioteca Foa Unesp
bibliotecafoa
[]
910996575131803648
Thu Sep 21 22:38:03 +0000 2017
RT @MikeLevinCA: HHS Secretary Tom Price needs to consider resignation.  This is NOT OK. https://t.co/kGfWkBmBIe
369883408
Nova
NovaKoyote
[]
910996575102500865
Thu Sep 21 22:38:03 +0000 2017
RT @keybladexxx: You ever tried to gargle peanut butter? https://t.co/Vh1rOL00cZ
1099004202
Denis
scottyy0_0
[]
910996575102685184
Thu Sep 21 22:38:03 +0000 2017
RT @xriusenoticies: .@enoticiescat Artur, la que has liado https://t.co/doj79GPHXD
191214841
J.C. T.
juanki1234
[]
910996575115255808
Thu Sep 21 22:38:03 +0000 2017
RT @Drebae_: My social battery lasts about as long as a robot chicken episode. A coo 10-15. After that I be ready to go. Be ques… 
2594254802
spooky dizzee🕸👻🎃
216Dizzee
[]
910996575127826432
Thu Sep 21 22:38:03 +0000 2017
RT @rogue_kvng: If food fell on floor wen we were kids,we'll leav it n say "the devil as eaten it"
The devil should be fat by now
I… 
2511392711
seun 👅
Mocheddadamy
[]
910996575132045312
Thu Sep 21 22:38:03 +0000 2017
RT @elcolombiano: “No he querido ver los partidos de Nacional”: Reinaldo Rueda https://t.co/rUhR1XYqpo https://t.co/I3oKkCwMiN
88332950
Santiago Hernández
SantyHernandez
[]
910996575110938624
Thu Sep 21 22:38:03 +0000 2017
RT @cib110: now block his # https://t.co/rXJZobZAf4
2529004681
t-raww
Takaratataa
[]
910996570925084675
Thu Sep 21 22:38:02 +0000 2017
RT @Clll7I: - ماهو دليل الحُب؟.
- أن تملك الكثير من الأسباب للرحيل ولا ترحل.
709684707353600000
17🥀
l8lls
[]
910996575127834624
Thu Sep 21 22:38:03 +0000 2017
RT @J_Almouswi_313: ان اول صور الاستعداد لعاشوراءهي فتح عين البصيرةلرؤيةالحقائق الملكوتيةوجلاءهذه العين بالتوبةالنصوح والاستغفارالحقيقي وال…
701325119000551424
حبيب الاعاجيبي🇮🇶
habab1988
[]
910996575094222851
Thu Sep 21 22:38:03 +0000 2017
RT @NEEDUBABY_V: PREVIEW 💖
170922 🦄️✨

#BTS #V
#뷔 #태태 #태형 
#방탄소년단 @BTS_twt https://t.co/dGHbd7bVvS
428490243
tata🍑; 承 HER
chaelintrbl
['BTS', 'V', '뷔', '태태', '태형', '방탄소년단']
910996575106846720
Thu Sep 21 22:38:03 +0000 2017
@USlawreview @onearth3o2 I don't want to live forever. One life is good for me. I am not greedy for more
2596105218
The Mind Experience
rich752913078
[]
910996575131983872
Thu Sep 21 22:38:03 +0000 2017
RT @c0caine00: https://t.co/CWlI0PTSuI
553886009
éxtasis❗
blxncx_
[]
910996575098458113
Thu Sep 21 22:38:03 +0000 2017
RT @slobovaskovic: ŠG “Vučevica” - Ili Radnici ili Marić&amp;gubari?!
https://t.co/HsQXGcv2va
393874675
Breezy
joaquinsgirl
[]
910996575098417152
Thu Sep 21 22:38:03 +0000 2017
RT @dornelesluaana: Fazia tempo que o sor Lauri não ia p escola de bom humor, hoje ele chegou chegando
3017882265
scherette
scischer
[]
910996575111012352
Thu Sep 21 22:38:03 +0000 2017
RT @topflight_jk: 170922 뮤출
핫바디 큐티쁘이
@BTS_twt 
#정국 #JUNGKOOK #BTS https://t.co/tU6xuYBhwH
4847583808
larita
busanmchi
['정국', 'JUNGKOOK', 'BTS']
910996575131963392
Thu Sep 21 22:38:03 +0000 2017
And this tactic will probably work. Really bringing us together as a nation isn't it? https://t.co/tZnZ0hBcjv
799355665596776448
The Resistance
EatOnIt1
[]
910996575111000064
Thu Sep 21 22:38:03 +0000 2017
ربنا يبعد عننا الناس اللى بتمثل قدامنا إنها بتحبنا ومن ورانا بتكرهلنا الخير وبتتمنالنا الشر
904074163941498880
Ñò Ùŕ 👀
Nour989796
[]
910996575119302656
Thu Sep 21 22:38:03 +0000 2017
@JustinTrudeau hypocrite The people left behind by Trudeau’s promised nation-to-nation relationship https://t.co/sMGCXO7Zha via @macleans
389017278
Penelope
penelope_pj
[]
910996575115235328
Thu Sep 21 22:38:03 +0000 2017
RT @slobovaskovic: NIKOLA, JOSIP, OSA I SIPA: Politika kaznila Špirića zbog falsifikata, pravosuđe štiti falsifikate Šimića
https://t.co/De…
2945201379
amanda paris
AParis0720
[]
910996575115202561
Thu Sep 21 22:38:03 +0000 2017
اجعل حسابك صدقة جارية لك في حياتك وبعد مماتك إشترك في تطبيق ميزاني. https://t.co/6cBVXC9xIC
734776600911335424
الــ ع ــنود الحربـي
anoud2234
[]
910996575098417153
Thu Sep 21 22:38:03 +0000 2017
RT @ndvh: Leaving an abuser can be more complicated than it seems. This is why: https://t.co/1qHoJUM8Th https://t.co/68uYnQrZFC
79002192
Donna Kelly
dkeck4
[]
910996575119380480
Thu Sep 21 22:38:03 +0000 2017
@jaimeralencar Ai desculpaaa, da próxima eu dou prometo
2249667056
Ave Maria
maluleaos
[]
910996575131803649
Thu Sep 21 22:38:03 +0000 2017
" #UrbanShield further militarizes local law enforcement in the USA in connection to US imperialism abroad" https://t.co/hrX5pg0MLm
4479927263
M. H Arsalai
ArsalaiH
['UrbanShield']
910996579321966592
Thu Sep 21 22:38:04 +0000 2017
背番号88 原辰徳 
嵐を呼べ レッツゴーレッツゴー 勝利を呼べ レッツゴーレッツゴー アーチを架けろ 輝く光浴びて それ行け辰徳〔ゴーゴーレッツゴー ジャイアンツ〕
#giants #kyojin
377239986
讀賣巨人軍応援歌
YGouenka
['giants', 'kyojin']
910996579292557312
Thu Sep 21 22:38:04 +0000 2017
@yuka_uralove 今更だけど、そう言えば昔使ってた名前は悠だった
844582626044260352
庵
nyankosannoyami
[]
910996579296804865
Thu Sep 21 22:38:04 +0000 2017
RT @Hikikomori_: 「エナジードリンクを飲みすぎると、カフェインの取りすぎで死亡する事もある」って話題をNHKの特集でやってたので、飲み物ごとに含まれるカフェイン量を調べてみたら、やばいやばいと言われてるエナジードリンクをぶっちぎりで上回る、「玉露」… 
730427134456406016
バブみオタク
ConceptX810
[]
910996579309412352
Thu Sep 21 22:38:04 +0000 2017
はーーーーーーーー!!!宝くじあたらねぇかなー!!!!!!一生金に困らないぐらいの!!!!そしたらド田舎にひっこして楽しいぼっち生活するのに・・・
1152991002
西
sanmon_sibai
[]
910996579326164992
Thu Sep 21 22:38:04 +0000 2017
RT @itspalmm: วันเกิดชานยอลปีก่อนแบคฮยอนทำไว้ดีมากมากปีนี้ก็เรยค่อนข้างจะแบบ https://t.co/gdSZQuC2rP
1274814697
กวาง
kkptcc
[]
910996579322028032
Thu Sep 21 22:38:04 +0000 2017
@KOMODO_SY 이제 담주 월욜이 별루 안 남앗ㅈ더!!! 헤헷 행복해 ㅠ뉴ㅠㅠㅠ
882103416004030464
권총총
l9960615_
[]
910996579321966593
Thu Sep 21 22:38:04 +0000 2017
@UltimateDoggy Wrong, Don't you mean Togashi when a NEW Dragon quest game comes out
761005837661995008
JorJor
RealJorJor
[]
910996579313520640
Thu Sep 21 22:38:04 +0000 2017
@DonCanja2 theyll get laced like a shoe
36269090
AceFunK.
ajrobosa_
[]
910996579292561408
Thu Sep 21 22:38:04 +0000 2017
今夜は社員総会です。会場のお料理チェックしたら、トルティーヤチップス、フライドポテト、パスタ…糖質制限の敵ばっかり。サラダくらいしか食べられないかもしれない_:(´ཀ`」 ∠):
907407261626023936
coco@ダイエット垢
cocoja_diet
[]
910996579326160896
Thu Sep 21 22:38:04 +0000 2017
@fein_7 fein205160add
2549662465
Fein
fein_add
[]
910996579288539137
Thu Sep 21 22:38:04 +0000 2017
RT @Erne_NoSoyManso: En el 2018 viene el Papa, vas a ir a recibirlo o verlo ?
855830258
Colo 🌱 YoNoAflojo
DBI1956
[]
910996579288526848
Thu Sep 21 22:38:04 +0000 2017
RT @Mark_Beech: Today @ArianaGrande finished her tour in Hong Kong... https://t.co/pH8yYJQ8LS
3438842057
John
ba7afjehlc
[]
910996579300945920
Thu Sep 21 22:38:04 +0000 2017
@_Nya_nnta おはよう
3313351663
死神満足さん@局員
TRedeyes
[]
910996579326324736
Thu Sep 21 22:38:04 +0000 2017
RT @HatemBaeshen1: اسوا مافى المباراة الحكم، ماقصرتوا يانمورنا. وشكرا لجمهور الذهب.
2254069354
C.Welly Hazazi 9💛
9Wloody
[]
910996579288588289
Thu Sep 21 22:38:04 +0000 2017
RT @nycmia: Aaron Hernandez autopsy revealed 'severe' case of CTE, lawyer says https://t.co/KVLNdF97MI All jobs have risk,F/B players 20Myr…
433741079
ProvocativeCosmetics
provocatlveface
[]
910996579309506560
Thu Sep 21 22:38:04 +0000 2017
RT @Valuuu1105: me lo traen que lo extraño?😭
379214239
valentina
valsansbergs
[]
910996579305365504
Thu Sep 21 22:38:04 +0000 2017
RT @Thegreatkhaalid: choose people who choose you
3312668469
grakei
gracemaries1
[]
910996579326267392
Thu Sep 21 22:38:04 +0000 2017
RT @iemanyat: طمأنينة القلب أعظم من سعادته .. لأن السعادة وقتية والطمأنينة دائمة .. ومن أعظم أسبابها ذكر الله { ألا بذكر الله تطمئن القلوب }
2281283457
عبير الشريف
1Sweetmoon
[]
910996579305189376
Thu Sep 21 22:38:04 +0000 2017
@dtrebella Yeah. How early should you start planning this / hiring a person / etc? I know it's early on, but only f… https://t.co/kKlbPd0Ufg
15024090
Andrew Ferguson
warandpeace
[]
910996579317927942
Thu Sep 21 22:38:04 +0000 2017
@AndreiacarlaC @gabysanchesss @VictoriaPiazza4 Oh my God, you kill me 😲😲😲😲😰
3017858573
Thais Brito
ThaisCezaro
[]
910996579292549120
Thu Sep 21 22:38:04 +0000 2017
Kay tinuod mn sd 😂
4047228138
Juan
juanaralca14
[]
910996579305312256
Thu Sep 21 22:38:04 +0000 2017
My teacher told me to screw myself yesterday
1407565189
Annaya
annayabaker
[]
910996579309334528
Thu Sep 21 22:38:04 +0000 2017
RT @19980917_com: 170917 인천팬싸 #브랜뉴보이즈 #MXM #동현 #김동현(@bnmboysofficial) 
활동 종료라니 믿기지 않네 ㅠㅠ.... 얼마 보지도 못한 것 같은데... https://t.co/IgSZzRKyTe
858473802371432448
[I'M THE ONE]봄린
Deahwi1129
['브랜뉴보이즈', 'MXM', '동현', '김동현']
910996579305312257
Thu Sep 21 22:38:04 +0000 2017
Loạt người đẹp Châu Á sử dụng mặt nạ giấy như 1 bước chăm sóc da hàng ngày: Mặt nạ giấy… https://t.co/T5BPwx1uIF
1706232769
Afamily, News
Afamilyn
[]
910996579322130432
Thu Sep 21 22:38:04 +0000 2017
RT @pcy_berry: Gigi Hadid wasn't the most popular person at her own fashion show https://t.co/XBogMdit50 

찬열이 타미쇼 해외 기사에요 ㅇㅍㅇ 한번… 
909839524263612417
jdjfjfj
jdjfjfj21071898
[]
910996579322093568
Thu Sep 21 22:38:04 +0000 2017
RT @cambionarry: depois do hiatos esses meninos entraram numa crise que tão apelando pra todos os lados https://t.co/DhpjIE7Zcz
3126942690
tmta
niallflowrs
[]
910996579313741824
Thu Sep 21 22:38:04 +0000 2017
nao acredito que nunca mais vou ver o ********
2577687992
malena
wlgort
[]
910996579326189568
Thu Sep 21 22:38:04 +0000 2017
RT @logicalplz: 「共産党に票を入れる人は反日」というブログ記事を書けば一件につき800円の報酬がもらえることが判明。 https://t.co/KGj1pzSqiy
850062760914305024
せんづ
EtSKBktq0Yim4sb
[]
910996575123595264
Thu Sep 21 22:38:03 +0000 2017
RT @Srta_demonior: cuando me llaman guapa y después me miro en el espejo https://t.co/MnmykjgS14
707224058
Irene Rivet Ramírez
irenerr9
[]
910996579309453312
Thu Sep 21 22:38:04 +0000 2017
RT @asvpxlone: Rockstar https://t.co/ElqdWH0w0o
848324133633105921
sarinha
sarahbasquess
[]
910996579296989184
Thu Sep 21 22:38:04 +0000 2017
Óbvio! https://t.co/OV8yy5D2wH
57061070
Bocelli
juniorbocelli
[]
910996579300945921
Thu Sep 21 22:38:04 +0000 2017
RT @exoexolunion: 1위 https://t.co/byA1GgC65w
820080948691636224
담
B56_H52
[]
910996579322142720
Thu Sep 21 22:38:04 +0000 2017
RT @FPSOMC: Dr. Romero agradece a @Junta_Ex colaboración programa de ayuda al medico enfermo y afirma que ningún medico que lo… 
373386695
Teresa Alfageme
talfageme
[]
910996579326316547
Thu Sep 21 22:38:04 +0000 2017
RT @Andreia14_Lino: Hoje na praxe fizeram-nos várias questões e tínhamos de escolher uma: partilhar sempre os nossos pensamentos ou nunca p…
1560805339
cerqueira
Andreia14_Lino
[]
910996579317878785
Thu Sep 21 22:38:04 +0000 2017
RT @IkerMuniain10: Que haya momentos que duren para siempre.. https://t.co/0HsLir4ks3
928001671
Cristian Ripoll ★
Cristian_Ripoll
[]
910996579322122240
Thu Sep 21 22:38:04 +0000 2017
RT @Richie_l0c0: Don’t even know you but I’m proud. Keep going champ. https://t.co/EgNgisMTQz
347589154
Kendra 👑
kendra_raynae
[]
910996579309453315
Thu Sep 21 22:38:04 +0000 2017
Puxa saco https://t.co/gpCKjLvNmR
2937123611
Mari 🤙🏾
Maari_Peixooto
[]
910996579292606465
Thu Sep 21 22:38:04 +0000 2017
RT @RinPhysBot: Langford方程式をルンゲ・クッタ法で解いた結果は、とっても美しいんだにゃ〜♡https://t.co/rugYhksHrO
127111997
TEK48 (υ・∇)υ
gogo_gaspard
[]
910996579305365506
Thu Sep 21 22:38:04 +0000 2017
Eu não coloco defeito em ninguém, foi Deus que colocou eu só comento 😂🖖
3347660709
Rodrigo Barbosa
Rodriigoo1996
[]
910996579326332928
Thu Sep 21 22:38:04 +0000 2017
💤💤
895379409712144385
دال.
dms36x
[]
910996579313700864
Thu Sep 21 22:38:04 +0000 2017
RT @_vitorinoo: o tipo de letra impede-me de ler https://t.co/Suf0cL4aF6
3138650381
Camila🐪
_caia__
[]
910996579292721152
Thu Sep 21 22:38:04 +0000 2017
RT @fahad_almowalad: جمهورنا الوفي
كنا نتمنى إسعادكم .. لكن قدر الله وما شاء فعل

شكراً لكم ، والقادم أجمل بإذن الله 💛
842548014896087040
احمد الشاطري
ahmadalshatri
[]
910996579288567810
Thu Sep 21 22:38:04 +0000 2017
Beeindruckende #blonde Brust weiß zu genießen Zittau https://t.co/JP5XaUjxo7
889995410290429952
Tiffany B
alekseeva1150
['blonde']
910996579296845824
Thu Sep 21 22:38:04 +0000 2017
RT @950731com: 170916 대구 팬사인회 

성윤이 없는 삶 = 무의미

#Golden_Child #골든차일드 #Y #와이 #최성윤 https://t.co/NGZCJl9Sss
805064940696399872
모찌장준🐥
19970303_
['Golden_Child', '골든차일드', 'Y', '와이', '최성윤']
910996579321913344
Thu Sep 21 22:38:04 +0000 2017
https://t.co/AXlfVzQpNo
894742198666657792
Emma loves Audrey 🥀
delicatecami
[]
910996579301171201
Thu Sep 21 22:38:04 +0000 2017
@ingrydbacarin tu para
635464507
karol
karoolgarrido
[]
910996579317944320
Thu Sep 21 22:38:04 +0000 2017
RT @chemicalx_721: 170921 - 동호로 개안(‘∀’●)♡
#뉴이스트 #뉴이스트W #백호 강동호 https://t.co/WtLgCOJwZQ
700559560860266496
Triplelove
imtriplelove
['뉴이스트', '뉴이스트W', '백호']
910996575123595264
Thu Sep 21 22:38:03 +0000 2017
RT @Srta_demonior: cuando me llaman guapa y después me miro en el espejo https://t.co/MnmykjgS14
707224058
Irene Rivet Ramírez
irenerr9
[]
910996570925084675
Thu Sep 21 22:38:02 +0000 2017
RT @Clll7I: - ماهو دليل الحُب؟.
- أن تملك الكثير من الأسباب للرحيل ولا ترحل.
709684707353600000
17🥀
l8lls
[]
910996583486939136
Thu Sep 21 22:38:05 +0000 2017
RT @baptivist: the real winner of tonight is 2012 because they produced quality kpop groups and there is solid proof of it. so glad bap vix…
3139665878
🔥Firelight💥
HunIs4Han
[]
910996583499436032
Thu Sep 21 22:38:05 +0000 2017
Don't be amazed at how powerful this universe is .. fear how weak a puppet you are at its disposal ..
198930830
Inder
jilaawatan
[]
910996583520411648
Thu Sep 21 22:38:05 +0000 2017
@kg_hrx ダサい… (  ˙-˙  )
仲良うしてくださーい!!!
905075677874995202
       ヒラノ
HiHiHiRaNo_
[]
910996583491133443
Thu Sep 21 22:38:05 +0000 2017
RT @18Marquezmhel: @starmagicphils #StarMagicBallFanFave Miho Nishida

#StarMagicBallFanFave JHO
910213724463435776
Rosel Cillo
CilloRosel
['StarMagicBallFanFave', 'StarMagicBallFanFave']
910996583499440128
Thu Sep 21 22:38:05 +0000 2017
腹痛!吐き気!目眩!喉の痛み!役満です!
4555968980
ぎんちょ
gigigi0219
[]
910996583499546624
Thu Sep 21 22:38:05 +0000 2017
Art is a machine
2457731790
king EA
neptuno30
[]
910996583486963712
Thu Sep 21 22:38:05 +0000 2017
RT @BCCI: 32.3: WICKET! A Agar (0) is out, lbw Kuldeep Yadav, 148/7 https://t.co/LSefsLxonP #IndvAus #TeamIndia @Paytm
792761470211596288
Unlock Cricket
unlockcricket
['IndvAus', 'TeamIndia']
910996583520526336
Thu Sep 21 22:38:05 +0000 2017
RT @TheScore1260: Jeff Nelson goes IN THE CELL! https://t.co/iFkIjWLEpj via @audioBoom
747999035664011265
Chanel
Chanel_toofly
[]
910996583507832832
Thu Sep 21 22:38:05 +0000 2017
RT @ppeup__: 사요나라는 Good bye나 Au revoir처럼 가는 사람의 안녕을 빌어주거나 다시 만날 날을 고대하는 게 아니라 그저 체념하고 상대를 보내는 느낌에 가깝다고 한다... 의미부여 죄송합니다 하지만 덕후는… 
209524974
D-53) 샷님
SD_Redline
[]
910996583482822657
Thu Sep 21 22:38:05 +0000 2017
RT @knamjohn: vazaram fotos do hoseok com o Jeff https://t.co/1AuCirhixO
4013795296
jun承  IDOL DA BIANCA
ohmygodminsuga
[]
910996583486971904
Thu Sep 21 22:38:05 +0000 2017
RT @do_kookv: 170921 엠넷 컴백쇼 국뷔들
#국뷔 #kookv

1. 🐯넥타이만 하고 잘까요?
본격 당사자들이 직접 써주는 넥타이플......... https://t.co/IXNoCXHnbh
816514463738183680
포터짱🚀
Poter0201_03
['국뷔', 'kookv']
910996583512121344
Thu Sep 21 22:38:05 +0000 2017
@Radius_0003 66
560488494
R09
Radius_0009
[]
910996583491059712
Thu Sep 21 22:38:05 +0000 2017
RT @paaaping: "너무 작아 찬녈이형 없어서"
ㅋ ㅋ ㅋ ㅋ ㅋ ㅋ ㅋㅋ ㅋ ㅋ ㅋ ㅋ ㅋ ㅋ ㅋ ㅋ ㅋ ㅋ ㅋㅋ ㅌㅋㅋㅋ 종인이 힐끔 보더니 너무 작다구 ㅋ ㅋ ㅋ ㅋㅋ ㅋ ㅋㅋ https://t.co/RXmCmBGoiO
774968194960195584
념품🎁
kscbsd
[]
910996583516270592
Thu Sep 21 22:38:05 +0000 2017
RT @OrioBoyThai: ก้อน้ำลายใช้ดี 55 //น้องชายบ้านใกล้เรือนเคียงขอเยสด้วย !!รูดากวัดกับเอ็นควย ไปเลยว่ามันลึกแค่ไหน https://t.co/SfWkJFCYDP
3160621172
Joe Roj
rojboy1
[]
910996583512137728
Thu Sep 21 22:38:05 +0000 2017
@papimache_haru おははるヾ(=^▽^=)ノ 雨やだー(笑)
440356378
油すまし@パピ/QUN2/サザクロ箱推し
adgjmptwajjj135
[]
910996583491174402
Thu Sep 21 22:38:05 +0000 2017
RT @LebronGot_3: @HBCUfessions  https://t.co/uVIPDh0MaL
2554783760
HBCU Confessions
HBCUfessions
[]
910996583503716352
Thu Sep 21 22:38:05 +0000 2017
RT @Funny_n_Serious: "A room without a book is like a body without a soul. Books are the only way we can connect the future to the past." -…
2928940442
Carlos Mora
thewinepusher
[]
910996583520641024
Thu Sep 21 22:38:05 +0000 2017
RT @amm1099: يارب https://t.co/shmTGJEk76
850017488209313792
ملك بدون مملكة؟!!؟
Yi1Il
[]
910996583508008960
Thu Sep 21 22:38:05 +0000 2017
سورة الأعراف(والذين كذبوا بآياتنا سنستدرجهم من حيث لا يعلمون)
1443642158
ناصر الشهري
ggggjn332
[]
910996583491293184
Thu Sep 21 22:38:05 +0000 2017
5 Oct raat 11:55 sa meri tl pr circus lagna! 
Baut maza ana meko! 😂 😂
610798152
Nasar J
__NasAJ
[]
910996583499657216
Thu Sep 21 22:38:05 +0000 2017
RT @3i_x3: وإن اشتقت لي يوماً اختبئ تحت لحافك اطردني من مخيلتك ، تذكر بأنني سيئ كما قلت عني وأني لا أستحق تفكيرك.
3315401005
WEd
AyamnWed
[]
910996583516446720
Thu Sep 21 22:38:05 +0000 2017
Las comidas que me hace son incomparables😍
900366942288130048
Wanda Lena Pujol
WandaLenaPujol2
[]
910996583512199168
Thu Sep 21 22:38:05 +0000 2017
@sanhersep Ya cache cual es
200956301
gabriela caniupan
gabycaniupan
[]
910996583487016963
Thu Sep 21 22:38:05 +0000 2017
اللهم أجرنا من النار وعذابها .. #دعاء #مغرد_بذكر_الله https://t.co/h06Ae7PXj0
4040801355
ابن مجدى يعقوب
mohyykhaled1
['دعاء', 'مغرد_بذكر_الله']
910996583520628738
Thu Sep 21 22:38:05 +0000 2017
@nattreyn that's every day
533395467
Drasi®
plugmusiq
[]
910996583491276802
Thu Sep 21 22:38:05 +0000 2017
RT @Klolita179: Sono fiera di dire che IO C'ERO  #chihaincastratopeterpan https://t.co/k7WYTIUWt5
525588071
reb
xlaurenshapes
['chihaincastratopeterpan']
910996583491268610
Thu Sep 21 22:38:05 +0000 2017
Juro odeio esta altura do ano por causa da mudança de tempo e fds estou com dores de garganta e constipada, acontece sempre.
734507860508413952
calico cat
sofslrh
[]
910996583487033344
Thu Sep 21 22:38:05 +0000 2017
@brunarocha_0 Nooooo é mesmk
103684253
Aninha
anacosta_m
[]
910996583482904576
Thu Sep 21 22:38:05 +0000 2017
RT @IamAkademiks: Yeah... xxxtentacion don't give a f*ck anymore clearly https://t.co/jbJ3VUylwY
330708736
$wervO.🎒
BankOnFleek_
[]
910996583512080384
Thu Sep 21 22:38:05 +0000 2017
RT @jfkantrowitz: Retweet if you want other people's families to have health insurance. https://t.co/3jem6LOOjp
3245536098
Hobotrash dragon
ana_agordonphx
[]
910996583491268609
Thu Sep 21 22:38:05 +0000 2017
Minha mãe saiu tomara q demore pra voltar kkk
813117052319834112
🔥Safadona🔥
crl_bbb
[]
910996583520641030
Thu Sep 21 22:38:05 +0000 2017
Please just step on my toes some more why don’t ya
740425841138601985
Wesker
Wesker405
[]
910996583503802368
Thu Sep 21 22:38:05 +0000 2017
اللهم صل وسلم على سيدنا محمد وعلى آله وصحبه أجمعين  ♻️  https://t.co/aa8HY7JplZ
716396463090233344
محمد.
m7md_ic
[]
910996583495413760
Thu Sep 21 22:38:05 +0000 2017
oh my god James Corden is Peter Rabbit in the new Peter Rabbit film! What a magical creation!!!!!
366549531
natalie
natalievx
[]
910996583507988480
Thu Sep 21 22:38:05 +0000 2017
RT @BigAntHerron: T-shirt I'm wearing that @Jason1Goff and I were talking about earlier on @670TheScore. @PlayersStudy collecting nee… 
522376682
Mitch Rosen
MitchRosen670
[]
910996583503863808
Thu Sep 21 22:38:05 +0000 2017
(أأمنتم من في السماء أن يخسف بكم الأرض فإذا هي تمور) [الملك:16] https://t.co/9C9How1OQg
2820786859
عموري عامر
alsalalm9559431
[]
910996583491293185
Thu Sep 21 22:38:05 +0000 2017
RT @janna20006: 💜 https://t.co/6lL4PO5yPJ
3353751052
💢رسالةعلي الطريق💢
resala_tareeq
[]
910996583487025152
Thu Sep 21 22:38:05 +0000 2017
RT @gols_HTE: Scocco recebe grande lançamento, se livra dos zagueiros, do goleiro e abre o placar

River Plate 1x0 Wilstermann (s… 
53515580
Débora
deborataynara
[]
910996583482880000
Thu Sep 21 22:38:05 +0000 2017
Paige Davis just shared the first photo from the new 'Trading Spaces' set #Albuquerque https://t.co/Mt0Kfd9Cn1
2893201341
Albuquerque
Albuquerque_Nws
['Albuquerque']
910996583516426240
Thu Sep 21 22:38:05 +0000 2017
Vamos river carajo!!!! 2-0
191041989
Utu@s
utuas
[]
910996583486865408
Thu Sep 21 22:38:05 +0000 2017
RT @whistle_mh1103: 170920 소리바다 
HQ🍃red carpet
😍😍😍
#몬스타엑스 #MONSTA_X 
#민혁 #MINHYUK
@OfficialMonstaX https://t.co/iYNC0bBUeI
206478477
🐶김 미키💎Y(ο0ω0ο)Y
jejupon1230
['몬스타엑스', 'MONSTA_X', '민혁', 'MINHYUK']
910996583491260418
Thu Sep 21 22:38:05 +0000 2017
RT @nutellaANDpizza: Me halfway through dinner https://t.co/TGgtBDX6tl
2240251576
EmHardie
emily_hardie
[]
910996583520591872
Thu Sep 21 22:38:05 +0000 2017
RT @Glowto1994: ⭐️ COMPETITION TIME ⭐️Win a free personalised A1 canvas ! Simply like, retweet and sign up to our newsletter… 
214920725
Leanne Perrett
leebing76
[]
910996583512182789
Thu Sep 21 22:38:05 +0000 2017
No se aburre este CTM de seguir delinquiendo? https://t.co/DVVPvN5AIY
935869003
LeoEver
Leojandro_Floyd
[]
910996583520579584
Thu Sep 21 22:38:05 +0000 2017
RT @TheMetalCore: "why are you always up so late?"

"Idk"

Me at 3am: https://t.co/yTOJrdZJs0
1116977184
DiiX (Diego)
DiiXHvY
[]
910996583495368717
Thu Sep 21 22:38:05 +0000 2017
RT @driverRyanReed: 💪 https://t.co/CYTHgl29GJ
499869254
David W. Carroll
W5QDF
[]
910996583486980097
Thu Sep 21 22:38:05 +0000 2017
RT @NourRefaye: Tayaba w lazeza😂 https://t.co/Fhi4yYrRJr
4888123900
JESS👄
yasmina_tamer
[]
910996583516217344
Thu Sep 21 22:38:05 +0000 2017
نيك خالة عليها طيز كبيرة..https://t.co/h3coaYJxzz

تفريش
سكس_خليجي
اثاره
8072 https://t.co/dvbVMlLr0P
871633076950118400
Ринас Рахимов
rinasrakhimov81
[]
910996583491047425
Thu Sep 21 22:38:05 +0000 2017
سحاقية كبيرة وصديقة بنتها.. https://t.co/HuzeQOwPsQ
https://t.co/mJYt5ZYlDT
سكس_اجنبي
نهود
مكوة
1839
895185724642865152
Олеся Захарова
olesiazakharov4
[]
910996583487074310
Thu Sep 21 22:38:05 +0000 2017
@souoteuamor A minha mãe conhece-a, está confirmado
2616085771
Fonseca
angela_fonsecaa
[]

In [30]:
twitter = Twitter(auth=oauth)

twitter.search.tweets(q='#nlproc')


Out[30]:
{'search_metadata': {'completed_in': 0.047,
  'count': 15,
  'max_id': 910999150707212288,
  'max_id_str': '910999150707212288',
  'next_results': '?max_id=910919384054599679&q=%23nlproc&include_entities=1',
  'query': '%23nlproc',
  'refresh_url': '?since_id=910999150707212288&q=%23nlproc&include_entities=1',
  'since_id': 0,
  'since_id_str': '0'},
 'statuses': [{'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 22:48:17 +0000 2017',
   'entities': {'hashtags': [{'indices': [121, 128], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'bit.ly/2yeXF9N',
      'expanded_url': 'http://bit.ly/2yeXF9N',
      'indices': [97, 120],
      'url': 'https://t.co/1bfhl7xA6E'}],
    'user_mentions': [{'id': 18068926,
      'id_str': '18068926',
      'indices': [3, 15],
      'name': 'Marcus Borba',
      'screen_name': 'marcusborba'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910999150707212288,
   'id_str': '910999150707212288',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 9,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 00:35:31 +0000 2017',
    'entities': {'hashtags': [{'indices': [104, 111], 'text': 'NLProc'},
      {'indices': [112, 128], 'text': 'MachineLearning'},
      {'indices': [129, 132], 'text': 'AI'},
      {'indices': [133, 137], 'text': 'NLP'}],
     'symbols': [],
     'urls': [{'display_url': 'bit.ly/2yeXF9N',
       'expanded_url': 'http://bit.ly/2yeXF9N',
       'indices': [80, 103],
       'url': 'https://t.co/1bfhl7xA6E'}],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 910663749165551618,
    'id_str': '910663749165551618',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 9,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLearning #AI #NLP',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Fri Dec 12 03:32:44 +0000 2008',
     'default_profile': True,
     'default_profile_image': False,
     'description': 'Passionate about #DataScience, #BigData, #Analytics, #MachineLearning, #AI, #IoT,  #BI, #DataMining & #DigitalTransformation.  #BBBT Member.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'linkedin.com/in/marcusborba',
         'expanded_url': 'https://www.linkedin.com/in/marcusborba',
         'indices': [0, 23],
         'url': 'https://t.co/QWV2hmLlSY'}]}},
     'favourites_count': 5516,
     'follow_request_sent': False,
     'followers_count': 27109,
     'following': False,
     'friends_count': 1333,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 18068926,
     'id_str': '18068926',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 1931,
     'location': '',
     'name': 'Marcus Borba',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/18068926/1442686907',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'marcusborba',
     'statuses_count': 22882,
     'time_zone': 'Brasilia',
     'translator_type': 'none',
     'url': 'https://t.co/QWV2hmLlSY',
     'utc_offset': -10800,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @marcusborba: Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLe…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Aug 13 02:58:52 +0000 2017',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'News about #DataScience and related topics',
    'entities': {'description': {'urls': []}},
    'favourites_count': 683,
    'follow_request_sent': False,
    'followers_count': 73,
    'following': False,
    'friends_count': 99,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 896566695162257408,
    'id_str': '896566695162257408',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'pt',
    'listed_count': 7,
    'location': '',
    'name': 'Data Science',
    'notifications': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/896566695162257408/1502928696',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/898864331290533888/SdcbG23L_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/898864331290533888/SdcbG23L_normal.jpg',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'datascitnbc',
    'statuses_count': 929,
    'time_zone': 'Pacific Time (US & Canada)',
    'translator_type': 'none',
    'url': None,
    'utc_offset': -25200,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 22:32:07 +0000 2017',
   'entities': {'hashtags': [{'indices': [68, 75], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'youtube.com/playlist?list=…',
      'expanded_url': 'https://www.youtube.com/playlist?list=PL3FW7Lu3i5Jsnh1rnUwq_TcylNr7EkRe6',
      'indices': [76, 99],
      'url': 'https://t.co/yE6ufYHCyw'},
     {'display_url': 'youtube.com/playlist?list=…',
      'expanded_url': 'https://www.youtube.com/playlist?list=PL3FW7Lu3i5JvHM8ljYj-zLfQRF3EO8sYv',
      'indices': [113, 136],
      'url': 'https://t.co/fcI0LjUSFK'}],
    'user_mentions': [{'id': 118263124,
      'id_str': '118263124',
      'indices': [3, 15],
      'name': 'Stanford NLP Group',
      'screen_name': 'stanfordnlp'},
     {'id': 18036441,
      'id_str': '18036441',
      'indices': [34, 43],
      'name': 'Stanford University',
      'screen_name': 'Stanford'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910995081363988480,
   'id_str': '910995081363988480',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 252,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Mon Aug 14 20:09:45 +0000 2017',
    'entities': {'hashtags': [{'indices': [51, 58], 'text': 'NLProc'}],
     'media': [{'display_url': 'pic.twitter.com/1c8SDdfp6s',
       'expanded_url': 'https://twitter.com/stanfordnlp/status/897188515745742848/photo/1',
       'id': 897188511199051776,
       'id_str': '897188511199051776',
       'indices': [120, 143],
       'media_url': 'http://pbs.twimg.com/media/DHN0MoqUwAAjQPe.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/DHN0MoqUwAAjQPe.jpg',
       'sizes': {'large': {'h': 496, 'resize': 'fit', 'w': 960},
        'medium': {'h': 496, 'resize': 'fit', 'w': 960},
        'small': {'h': 351, 'resize': 'fit', 'w': 680},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/1c8SDdfp6s'}],
     'symbols': [],
     'urls': [{'display_url': 'youtube.com/playlist?list=…',
       'expanded_url': 'https://www.youtube.com/playlist?list=PL3FW7Lu3i5Jsnh1rnUwq_TcylNr7EkRe6',
       'indices': [59, 82],
       'url': 'https://t.co/yE6ufYHCyw'},
      {'display_url': 'youtube.com/playlist?list=…',
       'expanded_url': 'https://www.youtube.com/playlist?list=PL3FW7Lu3i5JvHM8ljYj-zLfQRF3EO8sYv',
       'indices': [96, 119],
       'url': 'https://t.co/fcI0LjUSFK'}],
     'user_mentions': [{'id': 18036441,
       'id_str': '18036441',
       'indices': [17, 26],
       'name': 'Stanford University',
       'screen_name': 'Stanford'}]},
    'extended_entities': {'media': [{'display_url': 'pic.twitter.com/1c8SDdfp6s',
       'expanded_url': 'https://twitter.com/stanfordnlp/status/897188515745742848/photo/1',
       'id': 897188511199051776,
       'id_str': '897188511199051776',
       'indices': [120, 143],
       'media_url': 'http://pbs.twimg.com/media/DHN0MoqUwAAjQPe.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/DHN0MoqUwAAjQPe.jpg',
       'sizes': {'large': {'h': 496, 'resize': 'fit', 'w': 960},
        'medium': {'h': 496, 'resize': 'fit', 'w': 960},
        'small': {'h': 351, 'resize': 'fit', 'w': 680},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/1c8SDdfp6s'}]},
    'favorite_count': 518,
    'favorited': False,
    'geo': None,
    'id': 897188515745742848,
    'id_str': '897188515745742848',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 252,
    'retweeted': False,
    'source': '<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>',
    'text': 'Free, up-to-date @Stanford deep learning lectures: #NLProc https://t.co/yE6ufYHCyw &amp; Vision https://t.co/fcI0LjUSFK https://t.co/1c8SDdfp6s',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sun Feb 28 03:28:05 +0000 2010',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Computational Linguistics—Natural Language—Machine Learning—Deep Learning. And misc technology from Silicon Valley. (@chrmanning, @jurafsky & @percyliang)',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'nlp.stanford.edu',
         'expanded_url': 'http://nlp.stanford.edu/',
         'indices': [0, 22],
         'url': 'http://t.co/OK65AqppWC'}]}},
     'favourites_count': 1,
     'follow_request_sent': False,
     'followers_count': 37322,
     'following': False,
     'friends_count': 99,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 118263124,
     'id_str': '118263124',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 1167,
     'location': 'Stanford, CA, USA',
     'name': 'Stanford NLP Group',
     'notifications': False,
     'profile_background_color': '8C1515',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/118263124/1462245457',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/897182721272799232/0CplRl36_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/897182721272799232/0CplRl36_normal.jpg',
     'profile_link_color': '8C1515',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'stanfordnlp',
     'statuses_count': 3599,
     'time_zone': 'Pacific Time (US & Canada)',
     'translator_type': 'none',
     'url': 'http://t.co/OK65AqppWC',
     'utc_offset': -25200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @stanfordnlp: Free, up-to-date @Stanford deep learning lectures: #NLProc https://t.co/yE6ufYHCyw &amp; Vision https://t.co/fcI0LjUSFK https:…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Mar 27 19:26:03 +0000 2012',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Computer Vision, Machine & Deep Learning, Image Processing, Defence, Aerospace, Public Health.',
    'entities': {'description': {'urls': []}},
    'favourites_count': 2528,
    'follow_request_sent': False,
    'followers_count': 31,
    'following': False,
    'friends_count': 54,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 538420846,
    'id_str': '538420846',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 4,
    'location': 'Delhi, India',
    'name': 'Sutanshu S. Raj',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/538420846/1426172363',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/576034332399157248/2uwn0Bkw_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/576034332399157248/2uwn0Bkw_normal.jpeg',
    'profile_link_color': '9266CC',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'SutanshuRaj',
    'statuses_count': 1798,
    'time_zone': 'New Delhi',
    'translator_type': 'none',
    'url': None,
    'utc_offset': 19800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 22:26:04 +0000 2017',
   'entities': {'hashtags': [{'indices': [121, 128], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'bit.ly/2yeXF9N',
      'expanded_url': 'http://bit.ly/2yeXF9N',
      'indices': [97, 120],
      'url': 'https://t.co/1bfhl7xA6E'}],
    'user_mentions': [{'id': 18068926,
      'id_str': '18068926',
      'indices': [3, 15],
      'name': 'Marcus Borba',
      'screen_name': 'marcusborba'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910993559586787328,
   'id_str': '910993559586787328',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 9,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 00:35:31 +0000 2017',
    'entities': {'hashtags': [{'indices': [104, 111], 'text': 'NLProc'},
      {'indices': [112, 128], 'text': 'MachineLearning'},
      {'indices': [129, 132], 'text': 'AI'},
      {'indices': [133, 137], 'text': 'NLP'}],
     'symbols': [],
     'urls': [{'display_url': 'bit.ly/2yeXF9N',
       'expanded_url': 'http://bit.ly/2yeXF9N',
       'indices': [80, 103],
       'url': 'https://t.co/1bfhl7xA6E'}],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 910663749165551618,
    'id_str': '910663749165551618',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 9,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLearning #AI #NLP',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Fri Dec 12 03:32:44 +0000 2008',
     'default_profile': True,
     'default_profile_image': False,
     'description': 'Passionate about #DataScience, #BigData, #Analytics, #MachineLearning, #AI, #IoT,  #BI, #DataMining & #DigitalTransformation.  #BBBT Member.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'linkedin.com/in/marcusborba',
         'expanded_url': 'https://www.linkedin.com/in/marcusborba',
         'indices': [0, 23],
         'url': 'https://t.co/QWV2hmLlSY'}]}},
     'favourites_count': 5516,
     'follow_request_sent': False,
     'followers_count': 27109,
     'following': False,
     'friends_count': 1333,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 18068926,
     'id_str': '18068926',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 1931,
     'location': '',
     'name': 'Marcus Borba',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/18068926/1442686907',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'marcusborba',
     'statuses_count': 22882,
     'time_zone': 'Brasilia',
     'translator_type': 'none',
     'url': 'https://t.co/QWV2hmLlSY',
     'utc_offset': -10800,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @marcusborba: Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLe…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Aug 18 21:32:51 +0000 2017',
    'default_profile': True,
    'default_profile_image': False,
    'description': '#MachineLearning \n#DataScience \n#AI',
    'entities': {'description': {'urls': []}},
    'favourites_count': 643,
    'follow_request_sent': False,
    'followers_count': 93,
    'following': False,
    'friends_count': 132,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 898658978686787585,
    'id_str': '898658978686787585',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'pt',
    'listed_count': 8,
    'location': '',
    'name': 'Machine Learning',
    'notifications': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/898658978686787585/1503094720',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/898670662809788416/PX6614Gr_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/898670662809788416/PX6614Gr_normal.jpg',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'bcmachlearn',
    'statuses_count': 868,
    'time_zone': 'Pacific Time (US & Canada)',
    'translator_type': 'none',
    'url': None,
    'utc_offset': -25200,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 22:00:32 +0000 2017',
   'entities': {'hashtags': [{'indices': [121, 128], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'bit.ly/2yeXF9N',
      'expanded_url': 'http://bit.ly/2yeXF9N',
      'indices': [97, 120],
      'url': 'https://t.co/1bfhl7xA6E'}],
    'user_mentions': [{'id': 18068926,
      'id_str': '18068926',
      'indices': [3, 15],
      'name': 'Marcus Borba',
      'screen_name': 'marcusborba'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910987132323409920,
   'id_str': '910987132323409920',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 9,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 00:35:31 +0000 2017',
    'entities': {'hashtags': [{'indices': [104, 111], 'text': 'NLProc'},
      {'indices': [112, 128], 'text': 'MachineLearning'},
      {'indices': [129, 132], 'text': 'AI'},
      {'indices': [133, 137], 'text': 'NLP'}],
     'symbols': [],
     'urls': [{'display_url': 'bit.ly/2yeXF9N',
       'expanded_url': 'http://bit.ly/2yeXF9N',
       'indices': [80, 103],
       'url': 'https://t.co/1bfhl7xA6E'}],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 910663749165551618,
    'id_str': '910663749165551618',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 9,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLearning #AI #NLP',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Fri Dec 12 03:32:44 +0000 2008',
     'default_profile': True,
     'default_profile_image': False,
     'description': 'Passionate about #DataScience, #BigData, #Analytics, #MachineLearning, #AI, #IoT,  #BI, #DataMining & #DigitalTransformation.  #BBBT Member.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'linkedin.com/in/marcusborba',
         'expanded_url': 'https://www.linkedin.com/in/marcusborba',
         'indices': [0, 23],
         'url': 'https://t.co/QWV2hmLlSY'}]}},
     'favourites_count': 5516,
     'follow_request_sent': False,
     'followers_count': 27109,
     'following': False,
     'friends_count': 1333,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 18068926,
     'id_str': '18068926',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 1931,
     'location': '',
     'name': 'Marcus Borba',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/18068926/1442686907',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'marcusborba',
     'statuses_count': 22882,
     'time_zone': 'Brasilia',
     'translator_type': 'none',
     'url': 'https://t.co/QWV2hmLlSY',
     'utc_offset': -10800,
     'verified': False}},
   'source': '<a href="http://fernandocuenca.com" rel="nofollow">3WebTweetBot 2</a>',
   'text': 'RT @marcusborba: Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLe…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sun Oct 18 08:23:09 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': '#BusinessIntelligence #Qlik #QlikSense #Analytics #BigData',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'fernandocuenca.com',
        'expanded_url': 'http://fernandocuenca.com',
        'indices': [0, 23],
        'url': 'https://t.co/p4ppGsvETY'}]}},
    'favourites_count': 68,
    'follow_request_sent': False,
    'followers_count': 2094,
    'following': False,
    'friends_count': 1486,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 83324697,
    'id_str': '83324697',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'es',
    'listed_count': 260,
    'location': 'Valladolid, España',
    'name': 'Fernando Cuenca',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme15/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme15/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/83324697/1476308477',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/786104977777385473/ahjvSn5n_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/786104977777385473/ahjvSn5n_normal.jpg',
    'profile_link_color': '1B95E0',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'fernandocuenca',
    'statuses_count': 75513,
    'time_zone': 'Madrid',
    'translator_type': 'regular',
    'url': 'https://t.co/p4ppGsvETY',
    'utc_offset': 7200,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 22:00:31 +0000 2017',
   'entities': {'hashtags': [{'indices': [121, 128], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'bit.ly/2yeXF9N',
      'expanded_url': 'http://bit.ly/2yeXF9N',
      'indices': [97, 120],
      'url': 'https://t.co/1bfhl7xA6E'}],
    'user_mentions': [{'id': 18068926,
      'id_str': '18068926',
      'indices': [3, 15],
      'name': 'Marcus Borba',
      'screen_name': 'marcusborba'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910987129827848197,
   'id_str': '910987129827848197',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 9,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 00:35:31 +0000 2017',
    'entities': {'hashtags': [{'indices': [104, 111], 'text': 'NLProc'},
      {'indices': [112, 128], 'text': 'MachineLearning'},
      {'indices': [129, 132], 'text': 'AI'},
      {'indices': [133, 137], 'text': 'NLP'}],
     'symbols': [],
     'urls': [{'display_url': 'bit.ly/2yeXF9N',
       'expanded_url': 'http://bit.ly/2yeXF9N',
       'indices': [80, 103],
       'url': 'https://t.co/1bfhl7xA6E'}],
     'user_mentions': []},
    'favorite_count': 7,
    'favorited': False,
    'geo': None,
    'id': 910663749165551618,
    'id_str': '910663749165551618',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 9,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLearning #AI #NLP',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Fri Dec 12 03:32:44 +0000 2008',
     'default_profile': True,
     'default_profile_image': False,
     'description': 'Passionate about #DataScience, #BigData, #Analytics, #MachineLearning, #AI, #IoT,  #BI, #DataMining & #DigitalTransformation.  #BBBT Member.',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'linkedin.com/in/marcusborba',
         'expanded_url': 'https://www.linkedin.com/in/marcusborba',
         'indices': [0, 23],
         'url': 'https://t.co/QWV2hmLlSY'}]}},
     'favourites_count': 5516,
     'follow_request_sent': False,
     'followers_count': 27109,
     'following': False,
     'friends_count': 1333,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 18068926,
     'id_str': '18068926',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 1931,
     'location': '',
     'name': 'Marcus Borba',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/18068926/1442686907',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'marcusborba',
     'statuses_count': 22882,
     'time_zone': 'Brasilia',
     'translator_type': 'none',
     'url': 'https://t.co/QWV2hmLlSY',
     'utc_offset': -10800,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @marcusborba: Facebook and Google need humans, not just algorithms, to filter out hate speech https://t.co/1bfhl7xA6E #NLProc #MachineLe…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Dec 12 03:32:44 +0000 2008',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Passionate about #DataScience, #BigData, #Analytics, #MachineLearning, #AI, #IoT,  #BI, #DataMining & #DigitalTransformation.  #BBBT Member.',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'linkedin.com/in/marcusborba',
        'expanded_url': 'https://www.linkedin.com/in/marcusborba',
        'indices': [0, 23],
        'url': 'https://t.co/QWV2hmLlSY'}]}},
    'favourites_count': 5516,
    'follow_request_sent': False,
    'followers_count': 27109,
    'following': False,
    'friends_count': 1333,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 18068926,
    'id_str': '18068926',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 1931,
    'location': '',
    'name': 'Marcus Borba',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/18068926/1442686907',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'marcusborba',
    'statuses_count': 22882,
    'time_zone': 'Brasilia',
    'translator_type': 'none',
    'url': 'https://t.co/QWV2hmLlSY',
    'utc_offset': -10800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 21:48:12 +0000 2017',
   'entities': {'hashtags': [{'indices': [91, 101], 'text': 'SEPLN2017'},
     {'indices': [102, 109], 'text': 'NLProc'}],
    'media': [{'display_url': 'pic.twitter.com/MiyF6HPyQL',
      'expanded_url': 'https://twitter.com/sepln/status/910868928678842370/photo/1',
      'id': 910868890573471744,
      'id_str': '910868890573471744',
      'indices': [110, 133],
      'media_url': 'http://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
      'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
       'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
       'small': {'h': 510, 'resize': 'fit', 'w': 680},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 910868928678842370,
      'source_status_id_str': '910868928678842370',
      'source_user_id': 278482863,
      'source_user_id_str': '278482863',
      'type': 'photo',
      'url': 'https://t.co/MiyF6HPyQL'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 278482863,
      'id_str': '278482863',
      'indices': [3, 9],
      'name': 'SEPLN',
      'screen_name': 'sepln'}]},
   'extended_entities': {'media': [{'display_url': 'pic.twitter.com/MiyF6HPyQL',
      'expanded_url': 'https://twitter.com/sepln/status/910868928678842370/photo/1',
      'id': 910868890573471744,
      'id_str': '910868890573471744',
      'indices': [110, 133],
      'media_url': 'http://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
      'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
       'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
       'small': {'h': 510, 'resize': 'fit', 'w': 680},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 910868928678842370,
      'source_status_id_str': '910868928678842370',
      'source_user_id': 278482863,
      'source_user_id_str': '278482863',
      'type': 'photo',
      'url': 'https://t.co/MiyF6HPyQL'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910984028978843648,
   'id_str': '910984028978843648',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'es',
   'metadata': {'iso_language_code': 'es', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 14:10:50 +0000 2017',
    'entities': {'hashtags': [{'indices': [80, 90], 'text': 'SEPLN2017'},
      {'indices': [91, 98], 'text': 'NLProc'}],
     'media': [{'display_url': 'pic.twitter.com/MiyF6HPyQL',
       'expanded_url': 'https://twitter.com/sepln/status/910868928678842370/photo/1',
       'id': 910868890573471744,
       'id_str': '910868890573471744',
       'indices': [99, 122],
       'media_url': 'http://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
       'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
        'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
        'small': {'h': 510, 'resize': 'fit', 'w': 680},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/MiyF6HPyQL'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'extended_entities': {'media': [{'display_url': 'pic.twitter.com/MiyF6HPyQL',
       'expanded_url': 'https://twitter.com/sepln/status/910868928678842370/photo/1',
       'id': 910868890573471744,
       'id_str': '910868890573471744',
       'indices': [99, 122],
       'media_url': 'http://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/DKQObhOWAAAm31N.jpg',
       'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
        'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
        'small': {'h': 510, 'resize': 'fit', 'w': 680},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/MiyF6HPyQL'}]},
    'favorite_count': 2,
    'favorited': False,
    'geo': None,
    'id': 910868928678842370,
    'id_str': '910868928678842370',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'es',
    'metadata': {'iso_language_code': 'es', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    'text': 'Ferran Pla nos presenta su sistema de análisis de opiniones a nivel de aspecto. #SEPLN2017 #NLProc https://t.co/MiyF6HPyQL',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Thu Apr 07 11:06:52 +0000 2011',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Sociedad Española para el Procesamiento del Lenguaje Natural (SEPLN) / Spanish Society for Natural Language Processing',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'sepln.org',
         'expanded_url': 'http://www.sepln.org',
         'indices': [0, 22],
         'url': 'http://t.co/gply7rWOfU'}]}},
     'favourites_count': 34,
     'follow_request_sent': False,
     'followers_count': 497,
     'following': False,
     'friends_count': 85,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 278482863,
     'id_str': '278482863',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'es',
     'listed_count': 27,
     'location': 'Jaén',
     'name': 'SEPLN',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/278482863/1398153154',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/740507817682046976/lhUqnlsB_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/740507817682046976/lhUqnlsB_normal.jpg',
     'profile_link_color': '485578',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'sepln',
     'statuses_count': 703,
     'time_zone': 'Madrid',
     'translator_type': 'none',
     'url': 'http://t.co/gply7rWOfU',
     'utc_offset': 7200,
     'verified': False}},
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': 'RT @sepln: Ferran Pla nos presenta su sistema de análisis de opiniones a nivel de aspecto. #SEPLN2017 #NLProc https://t.co/MiyF6HPyQL',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Apr 25 23:10:00 +0000 2012',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'Profesor e Investigador.',
    'entities': {'description': {'urls': []}},
    'favourites_count': 71,
    'follow_request_sent': False,
    'followers_count': 75,
    'following': False,
    'friends_count': 57,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 563344692,
    'id_str': '563344692',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'es',
    'listed_count': 0,
    'location': '',
    'name': 'carlos henriquez',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/563344692/1502912816',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/897908765751558144/3UtC-Lmj_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/897908765751558144/3UtC-Lmj_normal.jpg',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'cnhenriquezm',
    'statuses_count': 225,
    'time_zone': None,
    'translator_type': 'none',
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 19:43:26 +0000 2017',
   'entities': {'hashtags': [{'indices': [102, 109], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'reddit.com/r/textdatamini…',
      'expanded_url': 'https://www.reddit.com/r/textdatamining/comments/71dghg/project_a_pytorch_implementation_of_paragraph/',
      'indices': [78, 101],
      'url': 'https://t.co/wuugxcUwgt'}],
    'user_mentions': [{'id': 2598162997,
      'id_str': '2598162997',
      'indices': [3, 10],
      'name': 'Machine Learning',
      'screen_name': 'ML_NLP'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910952631488716805,
   'id_str': '910952631488716805',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'fr',
   'metadata': {'iso_language_code': 'fr', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 7,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 14:19:44 +0000 2017',
    'entities': {'hashtags': [{'indices': [90, 97], 'text': 'NLProc'}],
     'symbols': [],
     'urls': [{'display_url': 'reddit.com/r/textdatamini…',
       'expanded_url': 'https://www.reddit.com/r/textdatamining/comments/71dghg/project_a_pytorch_implementation_of_paragraph/',
       'indices': [66, 89],
       'url': 'https://t.co/wuugxcUwgt'}],
     'user_mentions': []},
    'favorite_count': 20,
    'favorited': False,
    'geo': None,
    'id': 910871168881741824,
    'id_str': '910871168881741824',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'fr',
    'metadata': {'iso_language_code': 'fr', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 7,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': '[Project] A PyTorch implementation of Paragraph Vectors (doc2vec) https://t.co/wuugxcUwgt #NLProc',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Jul 01 15:16:38 +0000 2014',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Welcome to /r/TextDataMining! We share news, discussions, videos, papers, software and platforms related to Machine Learning and NLP. Subscribe on Reddit!',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'reddit.com/r/textdatamini…',
         'expanded_url': 'http://www.reddit.com/r/textdatamining/',
         'indices': [0, 22],
         'url': 'http://t.co/LmkgNxzJp6'}]}},
     'favourites_count': 27199,
     'follow_request_sent': False,
     'followers_count': 30366,
     'following': False,
     'friends_count': 105,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 2598162997,
     'id_str': '2598162997',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 712,
     'location': 'Reddit',
     'name': 'Machine Learning',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2598162997/1404229054',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/483993250470969344/_hfa_iHG_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/483993250470969344/_hfa_iHG_normal.jpeg',
     'profile_link_color': 'B30000',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'ML_NLP',
     'statuses_count': 1032,
     'time_zone': 'Pacific Time (US & Canada)',
     'translator_type': 'none',
     'url': 'http://t.co/LmkgNxzJp6',
     'utc_offset': -25200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @ML_NLP: [Project] A PyTorch implementation of Paragraph Vectors (doc2vec) https://t.co/wuugxcUwgt #NLProc',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Nov 28 18:02:51 +0000 2008',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Father, engineer, university professor and blogger. Interested in data mining, complex networks and deep learning',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'depijama.com',
        'expanded_url': 'http://www.depijama.com',
        'indices': [0, 22],
        'url': 'http://t.co/p5z80DCHZR'}]}},
    'favourites_count': 476,
    'follow_request_sent': False,
    'followers_count': 13876,
    'following': False,
    'friends_count': 151,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 17714678,
    'id_str': '17714678',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'pt',
    'listed_count': 121,
    'location': 'Brasil',
    'name': 'Frank Alcantara',
    'notifications': False,
    'profile_background_color': 'ABB8C2',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme7/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme7/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/17714678/1350160834',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/2571236607/temp1346635164strip20120902-3631-z1acmi_normal',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/2571236607/temp1346635164strip20120902-3631-z1acmi_normal',
    'profile_link_color': '3B94D9',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'depijama',
    'statuses_count': 19283,
    'time_zone': 'Brasilia',
    'translator_type': 'none',
    'url': 'http://t.co/p5z80DCHZR',
    'utc_offset': -10800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 19:36:43 +0000 2017',
   'entities': {'hashtags': [{'indices': [12, 24], 'text': 'EVALITA2016'},
     {'indices': [25, 32], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'twitter.com/EVALITAcampaig…',
      'expanded_url': 'https://twitter.com/EVALITAcampaign/status/910790108047167488',
      'indices': [55, 78],
      'url': 'https://t.co/2GwUroU1SE'}],
    'user_mentions': [{'id': 1598324696,
      'id_str': '1598324696',
      'indices': [3, 10],
      'name': 'DH Group at FBK',
      'screen_name': 'DH_FBK'},
     {'id': 1876590096,
      'id_str': '1876590096',
      'indices': [33, 44],
      'name': 'Viviana Patti',
      'screen_name': 'vivi_patti'},
     {'id': 203070657,
      'id_str': '203070657',
      'indices': [45, 54],
      'name': 'Pierpaolo Basile',
      'screen_name': 'basilepp'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910950941410684929,
   'id_str': '910950941410684929',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': True,
   'lang': 'und',
   'metadata': {'iso_language_code': 'und', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'quoted_status_id': 910790108047167488,
   'quoted_status_id_str': '910790108047167488',
   'retweet_count': 2,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 09:12:57 +0000 2017',
    'entities': {'hashtags': [{'indices': [0, 12], 'text': 'EVALITA2016'},
      {'indices': [13, 20], 'text': 'NLProc'}],
     'symbols': [],
     'urls': [{'display_url': 'twitter.com/EVALITAcampaig…',
       'expanded_url': 'https://twitter.com/EVALITAcampaign/status/910790108047167488',
       'indices': [43, 66],
       'url': 'https://t.co/2GwUroU1SE'}],
     'user_mentions': [{'id': 1876590096,
       'id_str': '1876590096',
       'indices': [21, 32],
       'name': 'Viviana Patti',
       'screen_name': 'vivi_patti'},
      {'id': 203070657,
       'id_str': '203070657',
       'indices': [33, 42],
       'name': 'Pierpaolo Basile',
       'screen_name': 'basilepp'}]},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 910793964520747008,
    'id_str': '910793964520747008',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': True,
    'lang': 'und',
    'metadata': {'iso_language_code': 'und', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'quoted_status': {'contributors': None,
     'coordinates': None,
     'created_at': 'Thu Sep 21 08:57:38 +0000 2017',
     'entities': {'hashtags': [{'indices': [100, 105], 'text': 'AILC'}],
      'symbols': [],
      'urls': [{'display_url': 'ai-lc.it/en/journal/vol…',
        'expanded_url': 'http://www.ai-lc.it/en/journal/vol-3-n-1-june-2017/',
        'indices': [115, 138],
        'url': 'https://t.co/KAGaubRxtJ'}],
      'user_mentions': []},
     'favorite_count': 1,
     'favorited': False,
     'geo': None,
     'id': 910790108047167488,
     'id_str': '910790108047167488',
     'in_reply_to_screen_name': None,
     'in_reply_to_status_id': None,
     'in_reply_to_status_id_str': None,
     'in_reply_to_user_id': None,
     'in_reply_to_user_id_str': None,
     'is_quote_status': False,
     'lang': 'en',
     'metadata': {'iso_language_code': 'und', 'result_type': 'recent'},
     'place': None,
     'possibly_sensitive': False,
     'retweet_count': 0,
     'retweeted': False,
     'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
     'text': 'The paper "EVALITA Goes Social: Tasks, Data, and Community at the 2016 Edition" is now available on #AILC website:\nhttps://t.co/KAGaubRxtJ',
     'truncated': False,
     'user': {'contributors_enabled': False,
      'created_at': 'Fri Mar 18 09:13:14 +0000 2016',
      'default_profile': False,
      'default_profile_image': False,
      'description': 'Evaluation of NLP and Speech Tools for Italian - 2016 campaign. \nOfficial hashtag: #EVALITA2016',
      'entities': {'description': {'urls': []},
       'url': {'urls': [{'display_url': 'evalita.it/2016',
          'expanded_url': 'http://www.evalita.it/2016',
          'indices': [0, 23],
          'url': 'https://t.co/B26WnfsMQF'}]}},
      'favourites_count': 24,
      'follow_request_sent': False,
      'followers_count': 144,
      'following': False,
      'friends_count': 55,
      'geo_enabled': False,
      'has_extended_profile': False,
      'id': 710755931227824128,
      'id_str': '710755931227824128',
      'is_translation_enabled': False,
      'is_translator': False,
      'lang': 'it',
      'listed_count': 13,
      'location': 'Italia',
      'name': 'EVALITA 2016',
      'notifications': False,
      'profile_background_color': 'FFFFFF',
      'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
      'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
      'profile_background_tile': False,
      'profile_banner_url': 'https://pbs.twimg.com/profile_banners/710755931227824128/1461159819',
      'profile_image_url': 'http://pbs.twimg.com/profile_images/710757456587202560/1qjC9img_normal.jpg',
      'profile_image_url_https': 'https://pbs.twimg.com/profile_images/710757456587202560/1qjC9img_normal.jpg',
      'profile_link_color': '009900',
      'profile_sidebar_border_color': '000000',
      'profile_sidebar_fill_color': '000000',
      'profile_text_color': '000000',
      'profile_use_background_image': True,
      'protected': False,
      'screen_name': 'EVALITAcampaign',
      'statuses_count': 249,
      'time_zone': None,
      'translator_type': 'none',
      'url': 'https://t.co/B26WnfsMQF',
      'utc_offset': None,
      'verified': False}},
    'quoted_status_id': 910790108047167488,
    'quoted_status_id_str': '910790108047167488',
    'retweet_count': 2,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': '#EVALITA2016 #NLProc @vivi_patti @basilepp https://t.co/2GwUroU1SE',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Jul 16 12:44:07 +0000 2013',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Digital Humanities Group at Fondazione Bruno Kessler',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'dh.fbk.eu',
         'expanded_url': 'http://dh.fbk.eu',
         'indices': [0, 22],
         'url': 'http://t.co/cEhdpclfr0'}]}},
     'favourites_count': 394,
     'follow_request_sent': False,
     'followers_count': 1163,
     'following': False,
     'friends_count': 1017,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 1598324696,
     'id_str': '1598324696',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'it',
     'listed_count': 186,
     'location': 'Trento',
     'name': 'DH Group at FBK',
     'notifications': False,
     'profile_background_color': '0099CC',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme16/bg.gif',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme16/bg.gif',
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/831796244515262464/l1um7o0r_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/831796244515262464/l1um7o0r_normal.jpg',
     'profile_link_color': '0084B4',
     'profile_sidebar_border_color': 'FFFFFF',
     'profile_sidebar_fill_color': 'DDFFCC',
     'profile_text_color': '333333',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'DH_FBK',
     'statuses_count': 7669,
     'time_zone': 'Rome',
     'translator_type': 'none',
     'url': 'http://t.co/cEhdpclfr0',
     'utc_offset': 7200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @DH_FBK: #EVALITA2016 #NLProc @vivi_patti @basilepp https://t.co/2GwUroU1SE',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Sep 17 19:24:33 +0000 2013',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 382,
    'follow_request_sent': False,
    'followers_count': 133,
    'following': False,
    'friends_count': 96,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1876590096,
    'id_str': '1876590096',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 16,
    'location': '',
    'name': 'Viviana Patti',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/444761424749789185/m4Bzdh5A_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/444761424749789185/m4Bzdh5A_normal.jpeg',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'vivi_patti',
    'statuses_count': 528,
    'time_zone': None,
    'translator_type': 'none',
    'url': None,
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 19:34:00 +0000 2017',
   'entities': {'hashtags': [{'indices': [0, 7], 'text': 'NLProc'},
     {'indices': [39, 46], 'text': 'coding'},
     {'indices': [80, 95], 'text': 'riskadjustment'}],
    'symbols': [],
    'urls': [{'display_url': 'bit.ly/2lDeWGk',
      'expanded_url': 'http://bit.ly/2lDeWGk',
      'indices': [56, 79],
      'url': 'https://t.co/IRKeaE4Jgf'}],
    'user_mentions': [{'id': 102429604,
      'id_str': '102429604',
      'indices': [25, 36],
      'name': 'Providence Oregon',
      'screen_name': 'ProvHealth'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910950258099867648,
   'id_str': '910950258099867648',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 0,
   'retweeted': False,
   'source': '<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>',
   'text': "#NLProc is the secret to @ProvHealth's #coding success: https://t.co/IRKeaE4Jgf #riskadjustment",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Wed Nov 09 21:46:07 +0000 2011',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Unlocking the power of unstructured data to improve healthcare outcomes #bigdata #NLProc',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'healthfidelity.com',
        'expanded_url': 'http://www.healthfidelity.com',
        'indices': [0, 22],
        'url': 'http://t.co/DQXmTAj7jS'}]}},
    'favourites_count': 887,
    'follow_request_sent': False,
    'followers_count': 694,
    'following': False,
    'friends_count': 1655,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 408780379,
    'id_str': '408780379',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 59,
    'location': 'California',
    'name': 'Health Fidelity',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme6/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme6/bg.gif',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/408780379/1449791355',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/679026956571136001/R0ZZyGwX_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/679026956571136001/R0ZZyGwX_normal.png',
    'profile_link_color': '3B94D9',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'healthfidelity',
    'statuses_count': 2013,
    'time_zone': 'Alaska',
    'translator_type': 'none',
    'url': 'http://t.co/DQXmTAj7jS',
    'utc_offset': -28800,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 19:00:11 +0000 2017',
   'entities': {'hashtags': [{'indices': [102, 109], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [{'display_url': 'reddit.com/r/textdatamini…',
      'expanded_url': 'https://www.reddit.com/r/textdatamining/comments/71dghg/project_a_pytorch_implementation_of_paragraph/',
      'indices': [78, 101],
      'url': 'https://t.co/wuugxcUwgt'}],
    'user_mentions': [{'id': 2598162997,
      'id_str': '2598162997',
      'indices': [3, 10],
      'name': 'Machine Learning',
      'screen_name': 'ML_NLP'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910941746942619649,
   'id_str': '910941746942619649',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'fr',
   'metadata': {'iso_language_code': 'fr', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 7,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 14:19:44 +0000 2017',
    'entities': {'hashtags': [{'indices': [90, 97], 'text': 'NLProc'}],
     'symbols': [],
     'urls': [{'display_url': 'reddit.com/r/textdatamini…',
       'expanded_url': 'https://www.reddit.com/r/textdatamining/comments/71dghg/project_a_pytorch_implementation_of_paragraph/',
       'indices': [66, 89],
       'url': 'https://t.co/wuugxcUwgt'}],
     'user_mentions': []},
    'favorite_count': 20,
    'favorited': False,
    'geo': None,
    'id': 910871168881741824,
    'id_str': '910871168881741824',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'fr',
    'metadata': {'iso_language_code': 'fr', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 7,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': '[Project] A PyTorch implementation of Paragraph Vectors (doc2vec) https://t.co/wuugxcUwgt #NLProc',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Tue Jul 01 15:16:38 +0000 2014',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Welcome to /r/TextDataMining! We share news, discussions, videos, papers, software and platforms related to Machine Learning and NLP. Subscribe on Reddit!',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'reddit.com/r/textdatamini…',
         'expanded_url': 'http://www.reddit.com/r/textdatamining/',
         'indices': [0, 22],
         'url': 'http://t.co/LmkgNxzJp6'}]}},
     'favourites_count': 27199,
     'follow_request_sent': False,
     'followers_count': 30366,
     'following': False,
     'friends_count': 105,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 2598162997,
     'id_str': '2598162997',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 712,
     'location': 'Reddit',
     'name': 'Machine Learning',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2598162997/1404229054',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/483993250470969344/_hfa_iHG_normal.jpeg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/483993250470969344/_hfa_iHG_normal.jpeg',
     'profile_link_color': 'B30000',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'ML_NLP',
     'statuses_count': 1032,
     'time_zone': 'Pacific Time (US & Canada)',
     'translator_type': 'none',
     'url': 'http://t.co/LmkgNxzJp6',
     'utc_offset': -25200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
   'text': 'RT @ML_NLP: [Project] A PyTorch implementation of Paragraph Vectors (doc2vec) https://t.co/wuugxcUwgt #NLProc',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Jul 24 15:12:35 +0000 2009',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'CTO CommonEdits, Generative music, Computational creativity, DSP, NLP, Machine Learning, Hackathons, Throat singing, Breakcore, Existentialism',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'cortexel.us',
        'expanded_url': 'http://cortexel.us',
        'indices': [0, 23],
        'url': 'https://t.co/JeWUuLwkng'}]}},
    'favourites_count': 230,
    'follow_request_sent': False,
    'followers_count': 153,
    'following': False,
    'friends_count': 175,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 59805645,
    'id_str': '59805645',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 13,
    'location': 'Boston',
    'name': 'CJ Carr',
    'notifications': False,
    'profile_background_color': 'FFFFFF',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/25211763/cort.gif',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/25211763/cort.gif',
    'profile_background_tile': True,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/539573826665717760/hUoFOLot_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/539573826665717760/hUoFOLot_normal.png',
    'profile_link_color': '000000',
    'profile_sidebar_border_color': 'CFCFCF',
    'profile_sidebar_fill_color': 'E3E3E3',
    'profile_text_color': '666666',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'Cortexelation',
    'statuses_count': 671,
    'time_zone': 'Eastern Time (US & Canada)',
    'translator_type': 'none',
    'url': 'https://t.co/JeWUuLwkng',
    'utc_offset': -14400,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 18:23:34 +0000 2017',
   'entities': {'hashtags': [{'indices': [113, 123], 'text': 'SEPLN2017'},
     {'indices': [124, 131], 'text': 'NLProc'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 278482863,
      'id_str': '278482863',
      'indices': [3, 9],
      'name': 'SEPLN',
      'screen_name': 'sepln'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910932532027412481,
   'id_str': '910932532027412481',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'es',
   'metadata': {'iso_language_code': 'es', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 10:35:30 +0000 2017',
    'entities': {'hashtags': [{'indices': [102, 112], 'text': 'SEPLN2017'}],
     'symbols': [],
     'urls': [{'display_url': 'twitter.com/i/web/status/9…',
       'expanded_url': 'https://twitter.com/i/web/status/910814737344159744',
       'indices': [114, 137],
       'url': 'https://t.co/IGi4cvKS8w'}],
     'user_mentions': []},
    'favorite_count': 1,
    'favorited': False,
    'geo': None,
    'id': 910814737344159744,
    'id_str': '910814737344159744',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'es',
    'metadata': {'iso_language_code': 'es', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
    'text': 'Ahora nos Miguel Anxo presenta su proyecto sobre el corpus SemCor del gallego anotado semánticamente. #SEPLN2017… https://t.co/IGi4cvKS8w',
    'truncated': True,
    'user': {'contributors_enabled': False,
     'created_at': 'Thu Apr 07 11:06:52 +0000 2011',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Sociedad Española para el Procesamiento del Lenguaje Natural (SEPLN) / Spanish Society for Natural Language Processing',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'sepln.org',
         'expanded_url': 'http://www.sepln.org',
         'indices': [0, 22],
         'url': 'http://t.co/gply7rWOfU'}]}},
     'favourites_count': 34,
     'follow_request_sent': False,
     'followers_count': 497,
     'following': False,
     'friends_count': 85,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 278482863,
     'id_str': '278482863',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'es',
     'listed_count': 27,
     'location': 'Jaén',
     'name': 'SEPLN',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/278482863/1398153154',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/740507817682046976/lhUqnlsB_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/740507817682046976/lhUqnlsB_normal.jpg',
     'profile_link_color': '485578',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'sepln',
     'statuses_count': 703,
     'time_zone': 'Madrid',
     'translator_type': 'none',
     'url': 'http://t.co/gply7rWOfU',
     'utc_offset': 7200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @sepln: Ahora nos Miguel Anxo presenta su proyecto sobre el corpus SemCor del gallego anotado semánticamente. #SEPLN2017 #NLProc https:/…',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Sep 16 09:33:58 +0000 2011',
    'default_profile': True,
    'default_profile_image': False,
    'description': '',
    'entities': {'description': {'urls': []}},
    'favourites_count': 63,
    'follow_request_sent': False,
    'followers_count': 118,
    'following': False,
    'friends_count': 297,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 374433827,
    'id_str': '374433827',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 22,
    'location': '',
    'name': 'Rodrigo Agerri',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1545244186/stones1_normal.jpeg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1545244186/stones1_normal.jpeg',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'ragerri',
    'statuses_count': 5339,
    'time_zone': 'Pacific Time (US & Canada)',
    'translator_type': 'none',
    'url': None,
    'utc_offset': -25200,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 17:42:15 +0000 2017',
   'entities': {'hashtags': [{'indices': [23, 30], 'text': 'nlproc'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 2719401787,
      'id_str': '2719401787',
      'indices': [3, 16],
      'name': '✨Cassandra Jacobs✨',
      'screen_name': 'BayesForDays'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910922134209355779,
   'id_str': '910922134209355779',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 16:45:04 +0000 2017',
    'entities': {'hashtags': [{'indices': [5, 12], 'text': 'nlproc'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'favorite_count': 2,
    'favorited': False,
    'geo': None,
    'id': 910907742415552513,
    'id_str': '910907742415552513',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
    'text': 'Halp #nlproc twitter, can someone point me to scope of negation work? SOTA?',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Sat Aug 09 13:42:19 +0000 2014',
     'default_profile': False,
     'default_profile_image': False,
     'description': '#NLProc @stitchfix_algo, computational #psycholinguistics witch girl @ucdavis, formerly  @BeckmanInst @IllinoisCS, native Texan, coffee robot. MBTI = Reviewer 2',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'cljacobs.net',
         'expanded_url': 'http://cljacobs.net',
         'indices': [0, 22],
         'url': 'http://t.co/028DTE9Exl'}]}},
     'favourites_count': 5895,
     'follow_request_sent': False,
     'followers_count': 807,
     'following': False,
     'friends_count': 244,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 2719401787,
     'id_str': '2719401787',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 44,
     'location': 'Oakland, CA',
     'name': '✨Cassandra Jacobs✨',
     'notifications': False,
     'profile_background_color': '000000',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2719401787/1503107949',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/897154796477587456/Vt7vyBc4_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/897154796477587456/Vt7vyBc4_normal.jpg',
     'profile_link_color': 'FAB81E',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'BayesForDays',
     'statuses_count': 7650,
     'time_zone': 'Pacific Time (US & Canada)',
     'translator_type': 'none',
     'url': 'http://t.co/028DTE9Exl',
     'utc_offset': -25200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @BayesForDays: Halp #nlproc twitter, can someone point me to scope of negation work? SOTA?',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Tue Jan 22 18:48:03 +0000 2013',
    'default_profile': True,
    'default_profile_image': False,
    'description': 'A place for me to tweet about linguistics, language, and amusing (at least to me) related things.    A work in progress. (he/him)',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'conf.ling.cornell.edu/tsnider/index.…',
        'expanded_url': 'http://conf.ling.cornell.edu/tsnider/index.html',
        'indices': [0, 22],
        'url': 'http://t.co/sF0nu7v4xq'}]}},
    'favourites_count': 10007,
    'follow_request_sent': False,
    'followers_count': 877,
    'following': False,
    'friends_count': 274,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 1112333618,
    'id_str': '1112333618',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 34,
    'location': 'Ithaca, NY',
    'name': 'Todd Snider',
    'notifications': False,
    'profile_background_color': 'C0DEED',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1112333618/1398971344',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/685149632805101568/T04jXQWq_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/685149632805101568/T04jXQWq_normal.jpg',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'ToddTheLinguist',
    'statuses_count': 4385,
    'time_zone': 'Eastern Time (US & Canada)',
    'translator_type': 'none',
    'url': 'http://t.co/sF0nu7v4xq',
    'utc_offset': -14400,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 17:41:05 +0000 2017',
   'entities': {'hashtags': [{'indices': [68, 75], 'text': 'nlproc'}],
    'symbols': [],
    'urls': [{'display_url': 'sites.google.com/view/fastparse…',
      'expanded_url': 'https://sites.google.com/view/fastparse/job-vacancies',
      'indices': [90, 113],
      'url': 'https://t.co/rZluqN5M3S'}],
    'user_mentions': [{'id': 3380073910,
      'id_str': '3380073910',
      'indices': [3, 15],
      'name': 'LyS',
      'screen_name': 'lysresearch'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910921840343863296,
   'id_str': '910921840343863296',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 1,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 17:39:08 +0000 2017',
    'entities': {'hashtags': [{'indices': [51, 58], 'text': 'nlproc'}],
     'symbols': [],
     'urls': [{'display_url': 'sites.google.com/view/fastparse…',
       'expanded_url': 'https://sites.google.com/view/fastparse/job-vacancies',
       'indices': [73, 96],
       'url': 'https://t.co/rZluqN5M3S'}],
     'user_mentions': []},
    'favorite_count': 0,
    'favorited': False,
    'geo': None,
    'id': 910921349320921088,
    'id_str': '910921349320921088',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'en',
    'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 1,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    'text': 'Last days to apply to a PhD student vacancy in our #nlproc group. Link:  https://t.co/rZluqN5M3S',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Fri Jul 17 07:48:29 +0000 2015',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'The Natural Language Processing Group at the University of A Coruña',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'grupolys.org',
         'expanded_url': 'http://www.grupolys.org/',
         'indices': [0, 23],
         'url': 'https://t.co/xXMJ30hPWX'}]}},
     'favourites_count': 53,
     'follow_request_sent': False,
     'followers_count': 75,
     'following': False,
     'friends_count': 60,
     'geo_enabled': False,
     'has_extended_profile': False,
     'id': 3380073910,
     'id_str': '3380073910',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'en',
     'listed_count': 16,
     'location': 'A Coruña, España',
     'name': 'LyS',
     'notifications': False,
     'profile_background_color': '000000',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/742355991145123840/OB_204Fh_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/742355991145123840/OB_204Fh_normal.jpg',
     'profile_link_color': 'CE007C',
     'profile_sidebar_border_color': '000000',
     'profile_sidebar_fill_color': '000000',
     'profile_text_color': '000000',
     'profile_use_background_image': False,
     'protected': False,
     'screen_name': 'lysresearch',
     'statuses_count': 76,
     'time_zone': None,
     'translator_type': 'none',
     'url': 'https://t.co/xXMJ30hPWX',
     'utc_offset': None,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @lysresearch: Last days to apply to a PhD student vacancy in our #nlproc group. Link:  https://t.co/rZluqN5M3S',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Sat Jan 08 18:19:06 +0000 2011',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Profesor de la Facultad de Informática de la Universidad de A Coruña',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'dc.fi.udc.es/~alonso/',
        'expanded_url': 'http://www.dc.fi.udc.es/~alonso/',
        'indices': [0, 22],
        'url': 'http://t.co/EGAhtfawvK'}]}},
    'favourites_count': 889,
    'follow_request_sent': False,
    'followers_count': 207,
    'following': False,
    'friends_count': 169,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 235635584,
    'id_str': '235635584',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'es',
    'listed_count': 27,
    'location': 'A Coruña, Spain',
    'name': 'Miguel A. Alonso',
    'notifications': False,
    'profile_background_color': 'C6E2EE',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme2/bg.gif',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1867848706/foto_marzo_2012_no_tan_peque_a_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1867848706/foto_marzo_2012_no_tan_peque_a_normal.jpg',
    'profile_link_color': '1F98C7',
    'profile_sidebar_border_color': 'C6E2EE',
    'profile_sidebar_fill_color': 'DAECF4',
    'profile_text_color': '663B12',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'miguel_a_alonso',
    'statuses_count': 3288,
    'time_zone': 'Madrid',
    'translator_type': 'none',
    'url': 'http://t.co/EGAhtfawvK',
    'utc_offset': 7200,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 17:39:08 +0000 2017',
   'entities': {'hashtags': [{'indices': [51, 58], 'text': 'nlproc'}],
    'symbols': [],
    'urls': [{'display_url': 'sites.google.com/view/fastparse…',
      'expanded_url': 'https://sites.google.com/view/fastparse/job-vacancies',
      'indices': [73, 96],
      'url': 'https://t.co/rZluqN5M3S'}],
    'user_mentions': []},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910921349320921088,
   'id_str': '910921349320921088',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'metadata': {'iso_language_code': 'en', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'Last days to apply to a PhD student vacancy in our #nlproc group. Link:  https://t.co/rZluqN5M3S',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Jul 17 07:48:29 +0000 2015',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'The Natural Language Processing Group at the University of A Coruña',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'grupolys.org',
        'expanded_url': 'http://www.grupolys.org/',
        'indices': [0, 23],
        'url': 'https://t.co/xXMJ30hPWX'}]}},
    'favourites_count': 53,
    'follow_request_sent': False,
    'followers_count': 75,
    'following': False,
    'friends_count': 60,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3380073910,
    'id_str': '3380073910',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 16,
    'location': 'A Coruña, España',
    'name': 'LyS',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/742355991145123840/OB_204Fh_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/742355991145123840/OB_204Fh_normal.jpg',
    'profile_link_color': 'CE007C',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'lysresearch',
    'statuses_count': 76,
    'time_zone': None,
    'translator_type': 'none',
    'url': 'https://t.co/xXMJ30hPWX',
    'utc_offset': None,
    'verified': False}},
  {'contributors': None,
   'coordinates': None,
   'created_at': 'Thu Sep 21 17:31:19 +0000 2017',
   'entities': {'hashtags': [{'indices': [90, 100], 'text': 'sepln2017'},
     {'indices': [101, 108], 'text': 'NLProc'}],
    'media': [{'display_url': 'pic.twitter.com/Axq4sneZne',
      'expanded_url': 'https://twitter.com/sepln/status/910800627529388032/photo/1',
      'id': 910800606406877184,
      'id_str': '910800606406877184',
      'indices': [109, 132],
      'media_url': 'http://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
      'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
       'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
       'small': {'h': 510, 'resize': 'fit', 'w': 680},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 910800627529388032,
      'source_status_id_str': '910800627529388032',
      'source_user_id': 278482863,
      'source_user_id_str': '278482863',
      'type': 'photo',
      'url': 'https://t.co/Axq4sneZne'}],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 278482863,
      'id_str': '278482863',
      'indices': [3, 9],
      'name': 'SEPLN',
      'screen_name': 'sepln'}]},
   'extended_entities': {'media': [{'display_url': 'pic.twitter.com/Axq4sneZne',
      'expanded_url': 'https://twitter.com/sepln/status/910800627529388032/photo/1',
      'id': 910800606406877184,
      'id_str': '910800606406877184',
      'indices': [109, 132],
      'media_url': 'http://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
      'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
       'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
       'small': {'h': 510, 'resize': 'fit', 'w': 680},
       'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
      'source_status_id': 910800627529388032,
      'source_status_id_str': '910800627529388032',
      'source_user_id': 278482863,
      'source_user_id_str': '278482863',
      'type': 'photo',
      'url': 'https://t.co/Axq4sneZne'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 910919384054599680,
   'id_str': '910919384054599680',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'es',
   'metadata': {'iso_language_code': 'es', 'result_type': 'recent'},
   'place': None,
   'possibly_sensitive': False,
   'retweet_count': 3,
   'retweeted': False,
   'retweeted_status': {'contributors': None,
    'coordinates': None,
    'created_at': 'Thu Sep 21 09:39:26 +0000 2017',
    'entities': {'hashtags': [{'indices': [79, 89], 'text': 'sepln2017'},
      {'indices': [90, 97], 'text': 'NLProc'}],
     'media': [{'display_url': 'pic.twitter.com/Axq4sneZne',
       'expanded_url': 'https://twitter.com/sepln/status/910800627529388032/photo/1',
       'id': 910800606406877184,
       'id_str': '910800606406877184',
       'indices': [98, 121],
       'media_url': 'http://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
       'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
        'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
        'small': {'h': 510, 'resize': 'fit', 'w': 680},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/Axq4sneZne'}],
     'symbols': [],
     'urls': [],
     'user_mentions': []},
    'extended_entities': {'media': [{'display_url': 'pic.twitter.com/Axq4sneZne',
       'expanded_url': 'https://twitter.com/sepln/status/910800627529388032/photo/1',
       'id': 910800606406877184,
       'id_str': '910800606406877184',
       'indices': [98, 121],
       'media_url': 'http://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/DKPQU24XoAAPV_2.jpg',
       'sizes': {'large': {'h': 1536, 'resize': 'fit', 'w': 2048},
        'medium': {'h': 900, 'resize': 'fit', 'w': 1200},
        'small': {'h': 510, 'resize': 'fit', 'w': 680},
        'thumb': {'h': 150, 'resize': 'crop', 'w': 150}},
       'type': 'photo',
       'url': 'https://t.co/Axq4sneZne'}]},
    'favorite_count': 4,
    'favorited': False,
    'geo': None,
    'id': 910800627529388032,
    'id_str': '910800627529388032',
    'in_reply_to_screen_name': None,
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'is_quote_status': False,
    'lang': 'es',
    'metadata': {'iso_language_code': 'es', 'result_type': 'recent'},
    'place': None,
    'possibly_sensitive': False,
    'retweet_count': 3,
    'retweeted': False,
    'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
    'text': 'Comenzando la sesión de proyectos con Carlos Gómez y su proyecto FASTPARSE ERC #sepln2017 #NLProc https://t.co/Axq4sneZne',
    'truncated': False,
    'user': {'contributors_enabled': False,
     'created_at': 'Thu Apr 07 11:06:52 +0000 2011',
     'default_profile': False,
     'default_profile_image': False,
     'description': 'Sociedad Española para el Procesamiento del Lenguaje Natural (SEPLN) / Spanish Society for Natural Language Processing',
     'entities': {'description': {'urls': []},
      'url': {'urls': [{'display_url': 'sepln.org',
         'expanded_url': 'http://www.sepln.org',
         'indices': [0, 22],
         'url': 'http://t.co/gply7rWOfU'}]}},
     'favourites_count': 34,
     'follow_request_sent': False,
     'followers_count': 497,
     'following': False,
     'friends_count': 85,
     'geo_enabled': True,
     'has_extended_profile': False,
     'id': 278482863,
     'id_str': '278482863',
     'is_translation_enabled': False,
     'is_translator': False,
     'lang': 'es',
     'listed_count': 27,
     'location': 'Jaén',
     'name': 'SEPLN',
     'notifications': False,
     'profile_background_color': 'C0DEED',
     'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
     'profile_background_tile': False,
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/278482863/1398153154',
     'profile_image_url': 'http://pbs.twimg.com/profile_images/740507817682046976/lhUqnlsB_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/740507817682046976/lhUqnlsB_normal.jpg',
     'profile_link_color': '485578',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'protected': False,
     'screen_name': 'sepln',
     'statuses_count': 703,
     'time_zone': 'Madrid',
     'translator_type': 'none',
     'url': 'http://t.co/gply7rWOfU',
     'utc_offset': 7200,
     'verified': False}},
   'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>',
   'text': 'RT @sepln: Comenzando la sesión de proyectos con Carlos Gómez y su proyecto FASTPARSE ERC #sepln2017 #NLProc https://t.co/Axq4sneZne',
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Fri Jul 17 07:48:29 +0000 2015',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'The Natural Language Processing Group at the University of A Coruña',
    'entities': {'description': {'urls': []},
     'url': {'urls': [{'display_url': 'grupolys.org',
        'expanded_url': 'http://www.grupolys.org/',
        'indices': [0, 23],
        'url': 'https://t.co/xXMJ30hPWX'}]}},
    'favourites_count': 53,
    'follow_request_sent': False,
    'followers_count': 75,
    'following': False,
    'friends_count': 60,
    'geo_enabled': False,
    'has_extended_profile': False,
    'id': 3380073910,
    'id_str': '3380073910',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 16,
    'location': 'A Coruña, España',
    'name': 'LyS',
    'notifications': False,
    'profile_background_color': '000000',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/742355991145123840/OB_204Fh_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/742355991145123840/OB_204Fh_normal.jpg',
    'profile_link_color': 'CE007C',
    'profile_sidebar_border_color': '000000',
    'profile_sidebar_fill_color': '000000',
    'profile_text_color': '000000',
    'profile_use_background_image': False,
    'protected': False,
    'screen_name': 'lysresearch',
    'statuses_count': 76,
    'time_zone': None,
    'translator_type': 'none',
    'url': 'https://t.co/xXMJ30hPWX',
    'utc_offset': None,
    'verified': False}}]}

In [31]:
# Get all the locations where Twitter provides trends service
world_trends = twitter.trends.available(_woeid=1)

In [34]:
world_trends


Out[34]:
[{'country': '',
  'countryCode': None,
  'name': 'Worldwide',
  'parentid': 0,
  'placeType': {'code': 19, 'name': 'Supername'},
  'url': 'http://where.yahooapis.com/v1/place/1',
  'woeid': 1},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Winnipeg',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2972',
  'woeid': 2972},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Ottawa',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/3369',
  'woeid': 3369},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Quebec',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/3444',
  'woeid': 3444},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Montreal',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/3534',
  'woeid': 3534},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Toronto',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/4118',
  'woeid': 4118},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Edmonton',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/8676',
  'woeid': 8676},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Calgary',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/8775',
  'woeid': 8775},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Vancouver',
  'parentid': 23424775,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/9807',
  'woeid': 9807},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Birmingham',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/12723',
  'woeid': 12723},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Blackpool',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/12903',
  'woeid': 12903},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Bournemouth',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/13383',
  'woeid': 13383},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Brighton',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/13911',
  'woeid': 13911},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Bristol',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/13963',
  'woeid': 13963},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Cardiff',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/15127',
  'woeid': 15127},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Coventry',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/17044',
  'woeid': 17044},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Derby',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/18114',
  'woeid': 18114},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Edinburgh',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/19344',
  'woeid': 19344},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Glasgow',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/21125',
  'woeid': 21125},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Hull',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/25211',
  'woeid': 25211},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Leeds',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/26042',
  'woeid': 26042},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Leicester',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/26062',
  'woeid': 26062},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Liverpool',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/26734',
  'woeid': 26734},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Manchester',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/28218',
  'woeid': 28218},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Middlesbrough',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/28869',
  'woeid': 28869},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Newcastle',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/30079',
  'woeid': 30079},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Nottingham',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/30720',
  'woeid': 30720},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Plymouth',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/32185',
  'woeid': 32185},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Portsmouth',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/32452',
  'woeid': 32452},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Preston',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/32566',
  'woeid': 32566},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Sheffield',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/34503',
  'woeid': 34503},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Stoke-on-Trent',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/36240',
  'woeid': 36240},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Swansea',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/36758',
  'woeid': 36758},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'London',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/44418',
  'woeid': 44418},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'Belfast',
  'parentid': 23424975,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/44544',
  'woeid': 44544},
 {'country': 'Dominican Republic',
  'countryCode': 'DO',
  'name': 'Santo Domingo',
  'parentid': 23424800,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/76456',
  'woeid': 76456},
 {'country': 'Guatemala',
  'countryCode': 'GT',
  'name': 'Guatemala City',
  'parentid': 23424834,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/83123',
  'woeid': 83123},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Acapulco',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/110978',
  'woeid': 110978},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Aguascalientes',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/111579',
  'woeid': 111579},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Chihuahua',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/115958',
  'woeid': 115958},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Mexico City',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/116545',
  'woeid': 116545},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Ciudad Juarez',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/116556',
  'woeid': 116556},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Nezahualcóyotl',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/116564',
  'woeid': 116564},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Culiacán',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/117994',
  'woeid': 117994},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Ecatepec de Morelos',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/118466',
  'woeid': 118466},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Guadalajara',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/124162',
  'woeid': 124162},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Hermosillo',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/124785',
  'woeid': 124785},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'León',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/131068',
  'woeid': 131068},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Mérida',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/133327',
  'woeid': 133327},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Mexicali',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/133475',
  'woeid': 133475},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Monterrey',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/134047',
  'woeid': 134047},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Morelia',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/134091',
  'woeid': 134091},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Naucalpan de Juárez',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/134395',
  'woeid': 134395},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Puebla',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/137612',
  'woeid': 137612},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Querétaro',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/138045',
  'woeid': 138045},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Saltillo',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/141272',
  'woeid': 141272},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'San Luis Potosí',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/144265',
  'woeid': 144265},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Tijuana',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/149361',
  'woeid': 149361},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Toluca',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/149769',
  'woeid': 149769},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Zapopan',
  'parentid': 23424900,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/151582',
  'woeid': 151582},
 {'country': 'Argentina',
  'countryCode': 'AR',
  'name': 'Mendoza',
  'parentid': 23424747,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/332471',
  'woeid': 332471},
 {'country': 'Chile',
  'countryCode': 'CL',
  'name': 'Santiago',
  'parentid': 23424782,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/349859',
  'woeid': 349859},
 {'country': 'Chile',
  'countryCode': 'CL',
  'name': 'Concepcion',
  'parentid': 23424782,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/349860',
  'woeid': 349860},
 {'country': 'Chile',
  'countryCode': 'CL',
  'name': 'Valparaiso',
  'parentid': 23424782,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/349861',
  'woeid': 349861},
 {'country': 'Colombia',
  'countryCode': 'CO',
  'name': 'Bogotá',
  'parentid': 23424787,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/368148',
  'woeid': 368148},
 {'country': 'Colombia',
  'countryCode': 'CO',
  'name': 'Cali',
  'parentid': 23424787,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/368149',
  'woeid': 368149},
 {'country': 'Colombia',
  'countryCode': 'CO',
  'name': 'Medellín',
  'parentid': 23424787,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/368150',
  'woeid': 368150},
 {'country': 'Colombia',
  'countryCode': 'CO',
  'name': 'Barranquilla',
  'parentid': 23424787,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/368151',
  'woeid': 368151},
 {'country': 'Ecuador',
  'countryCode': 'EC',
  'name': 'Quito',
  'parentid': 23424801,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/375732',
  'woeid': 375732},
 {'country': 'Ecuador',
  'countryCode': 'EC',
  'name': 'Guayaquil',
  'parentid': 23424801,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/375733',
  'woeid': 375733},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Caracas',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/395269',
  'woeid': 395269},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Maracaibo',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/395270',
  'woeid': 395270},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Maracay',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/395271',
  'woeid': 395271},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Valencia',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/395272',
  'woeid': 395272},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Barcelona',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/395273',
  'woeid': 395273},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Ciudad Guayana',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/395275',
  'woeid': 395275},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Turmero',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/395277',
  'woeid': 395277},
 {'country': 'Peru',
  'countryCode': 'PE',
  'name': 'Lima',
  'parentid': 23424919,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/418440',
  'woeid': 418440},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Brasília',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455819',
  'woeid': 455819},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Belém',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455820',
  'woeid': 455820},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Belo Horizonte',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455821',
  'woeid': 455821},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Curitiba',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455822',
  'woeid': 455822},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Porto Alegre',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455823',
  'woeid': 455823},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Recife',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455824',
  'woeid': 455824},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Rio de Janeiro',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455825',
  'woeid': 455825},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Salvador',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455826',
  'woeid': 455826},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'São Paulo',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455827',
  'woeid': 455827},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Campinas',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455828',
  'woeid': 455828},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Fortaleza',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455830',
  'woeid': 455830},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Goiânia',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455831',
  'woeid': 455831},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Manaus',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455833',
  'woeid': 455833},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'São Luís',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455834',
  'woeid': 455834},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Guarulhos',
  'parentid': 23424768,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/455867',
  'woeid': 455867},
 {'country': 'Argentina',
  'countryCode': 'AR',
  'name': 'Córdoba',
  'parentid': 23424747,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/466861',
  'woeid': 466861},
 {'country': 'Argentina',
  'countryCode': 'AR',
  'name': 'Rosario',
  'parentid': 23424747,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/466862',
  'woeid': 466862},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Barquisimeto',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/468382',
  'woeid': 468382},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Maturín',
  'parentid': 23424982,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/468384',
  'woeid': 468384},
 {'country': 'Argentina',
  'countryCode': 'AR',
  'name': 'Buenos Aires',
  'parentid': 23424747,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/468739',
  'woeid': 468739},
 {'country': 'Poland',
  'countryCode': 'PL',
  'name': 'Gdańsk',
  'parentid': 23424923,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/493417',
  'woeid': 493417},
 {'country': 'Poland',
  'countryCode': 'PL',
  'name': 'Kraków',
  'parentid': 23424923,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/502075',
  'woeid': 502075},
 {'country': 'Poland',
  'countryCode': 'PL',
  'name': 'Lodz',
  'parentid': 23424923,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/505120',
  'woeid': 505120},
 {'country': 'Poland',
  'countryCode': 'PL',
  'name': 'Poznań',
  'parentid': 23424923,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/514048',
  'woeid': 514048},
 {'country': 'Poland',
  'countryCode': 'PL',
  'name': 'Warsaw',
  'parentid': 23424923,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/523920',
  'woeid': 523920},
 {'country': 'Poland',
  'countryCode': 'PL',
  'name': 'Wroclaw',
  'parentid': 23424923,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/526363',
  'woeid': 526363},
 {'country': 'Austria',
  'countryCode': 'AT',
  'name': 'Vienna',
  'parentid': 23424750,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/551801',
  'woeid': 551801},
 {'country': 'Ireland',
  'countryCode': 'IE',
  'name': 'Cork',
  'parentid': 23424803,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/560472',
  'woeid': 560472},
 {'country': 'Ireland',
  'countryCode': 'IE',
  'name': 'Dublin',
  'parentid': 23424803,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/560743',
  'woeid': 560743},
 {'country': 'Ireland',
  'countryCode': 'IE',
  'name': 'Galway',
  'parentid': 23424803,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/560912',
  'woeid': 560912},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Bordeaux',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/580778',
  'woeid': 580778},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Lille',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/608105',
  'woeid': 608105},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Lyon',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/609125',
  'woeid': 609125},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Marseille',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/610264',
  'woeid': 610264},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Montpellier',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/612977',
  'woeid': 612977},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Nantes',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/613858',
  'woeid': 613858},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Paris',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/615702',
  'woeid': 615702},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Rennes',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/619163',
  'woeid': 619163},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Strasbourg',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/627791',
  'woeid': 627791},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'Toulouse',
  'parentid': 23424819,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/628886',
  'woeid': 628886},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Berlin',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/638242',
  'woeid': 638242},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Bremen',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/641142',
  'woeid': 641142},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Dortmund',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/645458',
  'woeid': 645458},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Dresden',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/645686',
  'woeid': 645686},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Dusseldorf',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/646099',
  'woeid': 646099},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Essen',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/648820',
  'woeid': 648820},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Frankfurt',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/650272',
  'woeid': 650272},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Hamburg',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/656958',
  'woeid': 656958},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Cologne',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/667931',
  'woeid': 667931},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Leipzig',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/671072',
  'woeid': 671072},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Munich',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/676757',
  'woeid': 676757},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Stuttgart',
  'parentid': 23424829,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/698064',
  'woeid': 698064},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Bologna',
  'parentid': 23424853,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/711080',
  'woeid': 711080},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Genoa',
  'parentid': 23424853,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/716085',
  'woeid': 716085},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Milan',
  'parentid': 23424853,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/718345',
  'woeid': 718345},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Naples',
  'parentid': 23424853,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/719258',
  'woeid': 719258},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Palermo',
  'parentid': 23424853,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/719846',
  'woeid': 719846},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Rome',
  'parentid': 23424853,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/721943',
  'woeid': 721943},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Turin',
  'parentid': 23424853,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/725003',
  'woeid': 725003},
 {'country': 'Netherlands',
  'countryCode': 'NL',
  'name': 'Den Haag',
  'parentid': 23424909,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/726874',
  'woeid': 726874},
 {'country': 'Netherlands',
  'countryCode': 'NL',
  'name': 'Amsterdam',
  'parentid': 23424909,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/727232',
  'woeid': 727232},
 {'country': 'Netherlands',
  'countryCode': 'NL',
  'name': 'Rotterdam',
  'parentid': 23424909,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/733075',
  'woeid': 733075},
 {'country': 'Netherlands',
  'countryCode': 'NL',
  'name': 'Utrecht',
  'parentid': 23424909,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/734047',
  'woeid': 734047},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Barcelona',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/753692',
  'woeid': 753692},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Bilbao',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/754542',
  'woeid': 754542},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Las Palmas',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/764814',
  'woeid': 764814},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Madrid',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/766273',
  'woeid': 766273},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Malaga',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/766356',
  'woeid': 766356},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Murcia',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/768026',
  'woeid': 768026},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Palma',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/769293',
  'woeid': 769293},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Seville',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/774508',
  'woeid': 774508},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Valencia',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/776688',
  'woeid': 776688},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Zaragoza',
  'parentid': 23424950,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/779063',
  'woeid': 779063},
 {'country': 'Switzerland',
  'countryCode': 'CH',
  'name': 'Geneva',
  'parentid': 23424957,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/782538',
  'woeid': 782538},
 {'country': 'Switzerland',
  'countryCode': 'CH',
  'name': 'Lausanne',
  'parentid': 23424957,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/783058',
  'woeid': 783058},
 {'country': 'Switzerland',
  'countryCode': 'CH',
  'name': 'Zurich',
  'parentid': 23424957,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/784794',
  'woeid': 784794},
 {'country': 'Belarus',
  'countryCode': 'BY',
  'name': 'Brest',
  'parentid': 23424765,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/824382',
  'woeid': 824382},
 {'country': 'Belarus',
  'countryCode': 'BY',
  'name': 'Grodno',
  'parentid': 23424765,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/825848',
  'woeid': 825848},
 {'country': 'Belarus',
  'countryCode': 'BY',
  'name': 'Gomel',
  'parentid': 23424765,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/825978',
  'woeid': 825978},
 {'country': 'Belarus',
  'countryCode': 'BY',
  'name': 'Minsk',
  'parentid': 23424765,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/834463',
  'woeid': 834463},
 {'country': 'Latvia',
  'countryCode': 'LV',
  'name': 'Riga',
  'parentid': 23424874,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/854823',
  'woeid': 854823},
 {'country': 'Norway',
  'countryCode': 'NO',
  'name': 'Bergen',
  'parentid': 23424910,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/857105',
  'woeid': 857105},
 {'country': 'Norway',
  'countryCode': 'NO',
  'name': 'Oslo',
  'parentid': 23424910,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/862592',
  'woeid': 862592},
 {'country': 'Sweden',
  'countryCode': 'SE',
  'name': 'Gothenburg',
  'parentid': 23424954,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/890869',
  'woeid': 890869},
 {'country': 'Sweden',
  'countryCode': 'SE',
  'name': 'Stockholm',
  'parentid': 23424954,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/906057',
  'woeid': 906057},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Dnipropetrovsk',
  'parentid': 23424976,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/918981',
  'woeid': 918981},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Donetsk',
  'parentid': 23424976,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/919163',
  'woeid': 919163},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Kharkiv',
  'parentid': 23424976,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/922137',
  'woeid': 922137},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Kyiv',
  'parentid': 23424976,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/924938',
  'woeid': 924938},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Lviv',
  'parentid': 23424976,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/924943',
  'woeid': 924943},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Odesa',
  'parentid': 23424976,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/929398',
  'woeid': 929398},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Zaporozhye',
  'parentid': 23424976,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/939628',
  'woeid': 939628},
 {'country': 'Greece',
  'countryCode': 'GR',
  'name': 'Athens',
  'parentid': 23424833,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/946738',
  'woeid': 946738},
 {'country': 'Greece',
  'countryCode': 'GR',
  'name': 'Thessaloniki',
  'parentid': 23424833,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/963291',
  'woeid': 963291},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Bekasi',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1030077',
  'woeid': 1030077},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Depok',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1032539',
  'woeid': 1032539},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Pekanbaru',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1040779',
  'woeid': 1040779},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Surabaya',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1044316',
  'woeid': 1044316},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Makassar',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1046138',
  'woeid': 1046138},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Bandung',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1047180',
  'woeid': 1047180},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Jakarta',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1047378',
  'woeid': 1047378},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Medan',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1047908',
  'woeid': 1047908},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Palembang',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1048059',
  'woeid': 1048059},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Semarang',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1048324',
  'woeid': 1048324},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Tangerang',
  'parentid': 23424846,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1048536',
  'woeid': 1048536},
 {'country': 'Singapore',
  'countryCode': 'SG',
  'name': 'Singapore',
  'parentid': 23424948,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1062617',
  'woeid': 1062617},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Perth',
  'parentid': 23424748,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1098081',
  'woeid': 1098081},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Adelaide',
  'parentid': 23424748,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1099805',
  'woeid': 1099805},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Brisbane',
  'parentid': 23424748,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1100661',
  'woeid': 1100661},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Canberra',
  'parentid': 23424748,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1100968',
  'woeid': 1100968},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Darwin',
  'parentid': 23424748,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1101597',
  'woeid': 1101597},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Melbourne',
  'parentid': 23424748,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1103816',
  'woeid': 1103816},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Sydney',
  'parentid': 23424748,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1105779',
  'woeid': 1105779},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Kitakyushu',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1110809',
  'woeid': 1110809},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Saitama',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1116753',
  'woeid': 1116753},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Chiba',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117034',
  'woeid': 1117034},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Fukuoka',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117099',
  'woeid': 1117099},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Hamamatsu',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117155',
  'woeid': 1117155},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Hiroshima',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117227',
  'woeid': 1117227},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Kawasaki',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117502',
  'woeid': 1117502},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Kobe',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117545',
  'woeid': 1117545},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Kumamoto',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117605',
  'woeid': 1117605},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Nagoya',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117817',
  'woeid': 1117817},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Niigata',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1117881',
  'woeid': 1117881},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Sagamihara',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1118072',
  'woeid': 1118072},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Sapporo',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1118108',
  'woeid': 1118108},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Sendai',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1118129',
  'woeid': 1118129},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Takamatsu',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1118285',
  'woeid': 1118285},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Tokyo',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1118370',
  'woeid': 1118370},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Yokohama',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1118550',
  'woeid': 1118550},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Goyang',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1130853',
  'woeid': 1130853},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Yongin',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132094',
  'woeid': 1132094},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Ansan',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132444',
  'woeid': 1132444},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Bucheon',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132445',
  'woeid': 1132445},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Busan',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132447',
  'woeid': 1132447},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Changwon',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132449',
  'woeid': 1132449},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Daegu',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132466',
  'woeid': 1132466},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Gwangju',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132481',
  'woeid': 1132481},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Incheon',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132496',
  'woeid': 1132496},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Seongnam',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132559',
  'woeid': 1132559},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Suwon',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132567',
  'woeid': 1132567},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Ulsan',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132578',
  'woeid': 1132578},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Seoul',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1132599',
  'woeid': 1132599},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Kajang',
  'parentid': 23424901,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1141268',
  'woeid': 1141268},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Ipoh',
  'parentid': 23424901,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1154679',
  'woeid': 1154679},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Johor Bahru',
  'parentid': 23424901,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1154698',
  'woeid': 1154698},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Klang',
  'parentid': 23424901,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1154726',
  'woeid': 1154726},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Kuala Lumpur',
  'parentid': 23424901,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1154781',
  'woeid': 1154781},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Calocan',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1167715',
  'woeid': 1167715},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Makati',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1180689',
  'woeid': 1180689},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Pasig',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1187115',
  'woeid': 1187115},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Taguig',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1195098',
  'woeid': 1195098},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Antipolo',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1198785',
  'woeid': 1198785},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Cagayan de Oro',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1199002',
  'woeid': 1199002},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Cebu City',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1199079',
  'woeid': 1199079},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Davao City',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1199136',
  'woeid': 1199136},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Manila',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1199477',
  'woeid': 1199477},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Quezon City',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1199682',
  'woeid': 1199682},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Zamboanga City',
  'parentid': 23424934,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1199980',
  'woeid': 1199980},
 {'country': 'Thailand',
  'countryCode': 'TH',
  'name': 'Bangkok',
  'parentid': 23424960,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1225448',
  'woeid': 1225448},
 {'country': 'Vietnam',
  'countryCode': 'VN',
  'name': 'Hanoi',
  'parentid': 23424984,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1236594',
  'woeid': 1236594},
 {'country': 'Vietnam',
  'countryCode': 'VN',
  'name': 'Hai Phong',
  'parentid': 23424984,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1236690',
  'woeid': 1236690},
 {'country': 'Vietnam',
  'countryCode': 'VN',
  'name': 'Can Tho',
  'parentid': 23424984,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1252351',
  'woeid': 1252351},
 {'country': 'Vietnam',
  'countryCode': 'VN',
  'name': 'Da Nang',
  'parentid': 23424984,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1252376',
  'woeid': 1252376},
 {'country': 'Vietnam',
  'countryCode': 'VN',
  'name': 'Ho Chi Minh City',
  'parentid': 23424984,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1252431',
  'woeid': 1252431},
 {'country': 'Algeria',
  'countryCode': 'DZ',
  'name': 'Algiers',
  'parentid': 23424740,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1253079',
  'woeid': 1253079},
 {'country': 'Ghana',
  'countryCode': 'GH',
  'name': 'Accra',
  'parentid': 23424824,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1326075',
  'woeid': 1326075},
 {'country': 'Ghana',
  'countryCode': 'GH',
  'name': 'Kumasi',
  'parentid': 23424824,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1330595',
  'woeid': 1330595},
 {'country': 'Nigeria',
  'countryCode': 'NG',
  'name': 'Benin City',
  'parentid': 23424908,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1387660',
  'woeid': 1387660},
 {'country': 'Nigeria',
  'countryCode': 'NG',
  'name': 'Ibadan',
  'parentid': 23424908,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1393672',
  'woeid': 1393672},
 {'country': 'Nigeria',
  'countryCode': 'NG',
  'name': 'Kaduna',
  'parentid': 23424908,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1396439',
  'woeid': 1396439},
 {'country': 'Nigeria',
  'countryCode': 'NG',
  'name': 'Kano',
  'parentid': 23424908,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1396803',
  'woeid': 1396803},
 {'country': 'Nigeria',
  'countryCode': 'NG',
  'name': 'Lagos',
  'parentid': 23424908,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1398823',
  'woeid': 1398823},
 {'country': 'Nigeria',
  'countryCode': 'NG',
  'name': 'Port Harcourt',
  'parentid': 23424908,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1404447',
  'woeid': 1404447},
 {'country': 'Egypt',
  'countryCode': 'EG',
  'name': 'Giza',
  'parentid': 23424802,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1521643',
  'woeid': 1521643},
 {'country': 'Egypt',
  'countryCode': 'EG',
  'name': 'Cairo',
  'parentid': 23424802,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1521894',
  'woeid': 1521894},
 {'country': 'Egypt',
  'countryCode': 'EG',
  'name': 'Alexandria',
  'parentid': 23424802,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1522006',
  'woeid': 1522006},
 {'country': 'Kenya',
  'countryCode': 'KE',
  'name': 'Mombasa',
  'parentid': 23424863,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1528335',
  'woeid': 1528335},
 {'country': 'Kenya',
  'countryCode': 'KE',
  'name': 'Nairobi',
  'parentid': 23424863,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1528488',
  'woeid': 1528488},
 {'country': 'South Africa',
  'countryCode': 'ZA',
  'name': 'Durban',
  'parentid': 23424942,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1580913',
  'woeid': 1580913},
 {'country': 'South Africa',
  'countryCode': 'ZA',
  'name': 'Johannesburg',
  'parentid': 23424942,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1582504',
  'woeid': 1582504},
 {'country': 'South Africa',
  'countryCode': 'ZA',
  'name': 'Port Elizabeth',
  'parentid': 23424942,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1586614',
  'woeid': 1586614},
 {'country': 'South Africa',
  'countryCode': 'ZA',
  'name': 'Pretoria',
  'parentid': 23424942,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1586638',
  'woeid': 1586638},
 {'country': 'South Africa',
  'countryCode': 'ZA',
  'name': 'Soweto',
  'parentid': 23424942,
  'placeType': {'code': 22, 'name': 'Unknown'},
  'url': 'http://where.yahooapis.com/v1/place/1587677',
  'woeid': 1587677},
 {'country': 'South Africa',
  'countryCode': 'ZA',
  'name': 'Cape Town',
  'parentid': 23424942,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1591691',
  'woeid': 1591691},
 {'country': 'Saudi Arabia',
  'countryCode': 'SA',
  'name': 'Medina',
  'parentid': 23424938,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1937801',
  'woeid': 1937801},
 {'country': 'Saudi Arabia',
  'countryCode': 'SA',
  'name': 'Dammam',
  'parentid': 23424938,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1939574',
  'woeid': 1939574},
 {'country': 'Saudi Arabia',
  'countryCode': 'SA',
  'name': 'Riyadh',
  'parentid': 23424938,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1939753',
  'woeid': 1939753},
 {'country': 'Saudi Arabia',
  'countryCode': 'SA',
  'name': 'Jeddah',
  'parentid': 23424938,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1939873',
  'woeid': 1939873},
 {'country': 'Saudi Arabia',
  'countryCode': 'SA',
  'name': 'Mecca',
  'parentid': 23424938,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1939897',
  'woeid': 1939897},
 {'country': 'United Arab Emirates',
  'countryCode': 'AE',
  'name': 'Sharjah',
  'parentid': 23424738,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1940119',
  'woeid': 1940119},
 {'country': 'United Arab Emirates',
  'countryCode': 'AE',
  'name': 'Abu Dhabi',
  'parentid': 23424738,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1940330',
  'woeid': 1940330},
 {'country': 'United Arab Emirates',
  'countryCode': 'AE',
  'name': 'Dubai',
  'parentid': 23424738,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1940345',
  'woeid': 1940345},
 {'country': 'Israel',
  'countryCode': 'IL',
  'name': 'Haifa',
  'parentid': 23424852,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1967449',
  'woeid': 1967449},
 {'country': 'Israel',
  'countryCode': 'IL',
  'name': 'Tel Aviv',
  'parentid': 23424852,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1968212',
  'woeid': 1968212},
 {'country': 'Israel',
  'countryCode': 'IL',
  'name': 'Jerusalem',
  'parentid': 23424852,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1968222',
  'woeid': 1968222},
 {'country': 'Jordan',
  'countryCode': 'JO',
  'name': 'Amman',
  'parentid': 23424860,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1968902',
  'woeid': 1968902},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Chelyabinsk',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/1997422',
  'woeid': 1997422},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Khabarovsk',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2018708',
  'woeid': 2018708},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Krasnodar',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2028717',
  'woeid': 2028717},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Krasnoyarsk',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2029043',
  'woeid': 2029043},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Samara',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2077746',
  'woeid': 2077746},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Voronezh',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2108210',
  'woeid': 2108210},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Yekaterinburg',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2112237',
  'woeid': 2112237},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Irkutsk',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2121040',
  'woeid': 2121040},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Kazan',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2121267',
  'woeid': 2121267},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Moscow',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2122265',
  'woeid': 2122265},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Nizhny Novgorod',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2122471',
  'woeid': 2122471},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Novosibirsk',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2122541',
  'woeid': 2122541},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Omsk',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2122641',
  'woeid': 2122641},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Perm',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2122814',
  'woeid': 2122814},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Rostov-on-Don',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2123177',
  'woeid': 2123177},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Saint Petersburg',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2123260',
  'woeid': 2123260},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Ufa',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2124045',
  'woeid': 2124045},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Vladivostok',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2124288',
  'woeid': 2124288},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Volgograd',
  'parentid': 23424936,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2124298',
  'woeid': 2124298},
 {'country': 'Pakistan',
  'countryCode': 'PK',
  'name': 'Karachi',
  'parentid': 23424922,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2211096',
  'woeid': 2211096},
 {'country': 'Pakistan',
  'countryCode': 'PK',
  'name': 'Lahore',
  'parentid': 23424922,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2211177',
  'woeid': 2211177},
 {'country': 'Pakistan',
  'countryCode': 'PK',
  'name': 'Multan',
  'parentid': 23424922,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2211269',
  'woeid': 2211269},
 {'country': 'Pakistan',
  'countryCode': 'PK',
  'name': 'Rawalpindi',
  'parentid': 23424922,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2211387',
  'woeid': 2211387},
 {'country': 'Pakistan',
  'countryCode': 'PK',
  'name': 'Faisalabad',
  'parentid': 23424922,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2211574',
  'woeid': 2211574},
 {'country': 'Oman',
  'countryCode': 'OM',
  'name': 'Muscat',
  'parentid': 23424898,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2268284',
  'woeid': 2268284},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Nagpur',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2282863',
  'woeid': 2282863},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Lucknow',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295377',
  'woeid': 2295377},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Kanpur',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295378',
  'woeid': 2295378},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Patna',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295381',
  'woeid': 2295381},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Ranchi',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295383',
  'woeid': 2295383},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Kolkata',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295386',
  'woeid': 2295386},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Srinagar',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295387',
  'woeid': 2295387},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Amritsar',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295388',
  'woeid': 2295388},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Jaipur',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295401',
  'woeid': 2295401},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Ahmedabad',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295402',
  'woeid': 2295402},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Rajkot',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295404',
  'woeid': 2295404},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Surat',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295405',
  'woeid': 2295405},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Bhopal',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295407',
  'woeid': 2295407},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Indore',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295408',
  'woeid': 2295408},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Thane',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295410',
  'woeid': 2295410},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Mumbai',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295411',
  'woeid': 2295411},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Pune',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295412',
  'woeid': 2295412},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Hyderabad',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295414',
  'woeid': 2295414},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Bangalore',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295420',
  'woeid': 2295420},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Chennai',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2295424',
  'woeid': 2295424},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Mersin',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2323778',
  'woeid': 2323778},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Adana',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2343678',
  'woeid': 2343678},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Ankara',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2343732',
  'woeid': 2343732},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Antalya',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2343733',
  'woeid': 2343733},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Bursa',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2343843',
  'woeid': 2343843},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Diyarbakır',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2343932',
  'woeid': 2343932},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Eskişehir',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2343980',
  'woeid': 2343980},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Gaziantep',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2343999',
  'woeid': 2343999},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Istanbul',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2344116',
  'woeid': 2344116},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Izmir',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2344117',
  'woeid': 2344117},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Kayseri',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2344174',
  'woeid': 2344174},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Konya',
  'parentid': 23424969,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2344210',
  'woeid': 2344210},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Okinawa',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2345896',
  'woeid': 2345896},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Daejeon',
  'parentid': 23424868,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2345975',
  'woeid': 2345975},
 {'country': 'New Zealand',
  'countryCode': 'NZ',
  'name': 'Auckland',
  'parentid': 23424916,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2348079',
  'woeid': 2348079},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Albuquerque',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2352824',
  'woeid': 2352824},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Atlanta',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2357024',
  'woeid': 2357024},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Austin',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2357536',
  'woeid': 2357536},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Baltimore',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2358820',
  'woeid': 2358820},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Baton Rouge',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2359991',
  'woeid': 2359991},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Birmingham',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2364559',
  'woeid': 2364559},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Boston',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2367105',
  'woeid': 2367105},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Charlotte',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2378426',
  'woeid': 2378426},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Chicago',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2379574',
  'woeid': 2379574},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Cincinnati',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2380358',
  'woeid': 2380358},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Cleveland',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2381475',
  'woeid': 2381475},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Colorado Springs',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2383489',
  'woeid': 2383489},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Columbus',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2383660',
  'woeid': 2383660},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Dallas-Ft. Worth',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2388929',
  'woeid': 2388929},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Denver',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2391279',
  'woeid': 2391279},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Detroit',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2391585',
  'woeid': 2391585},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'El Paso',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2397816',
  'woeid': 2397816},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Fresno',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2407517',
  'woeid': 2407517},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Greensboro',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2414469',
  'woeid': 2414469},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Harrisburg',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2418046',
  'woeid': 2418046},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Honolulu',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2423945',
  'woeid': 2423945},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Houston',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2424766',
  'woeid': 2424766},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Indianapolis',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2427032',
  'woeid': 2427032},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Jackson',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2428184',
  'woeid': 2428184},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Jacksonville',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2428344',
  'woeid': 2428344},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Kansas City',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2430683',
  'woeid': 2430683},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Las Vegas',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2436704',
  'woeid': 2436704},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Long Beach',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2441472',
  'woeid': 2441472},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Los Angeles',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2442047',
  'woeid': 2442047},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Louisville',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2442327',
  'woeid': 2442327},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Memphis',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2449323',
  'woeid': 2449323},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Mesa',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2449808',
  'woeid': 2449808},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Miami',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2450022',
  'woeid': 2450022},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Milwaukee',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2451822',
  'woeid': 2451822},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Minneapolis',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2452078',
  'woeid': 2452078},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Nashville',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2457170',
  'woeid': 2457170},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'New Haven',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2458410',
  'woeid': 2458410},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'New Orleans',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2458833',
  'woeid': 2458833},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'New York',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2459115',
  'woeid': 2459115},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Norfolk',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2460389',
  'woeid': 2460389},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Oklahoma City',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2464592',
  'woeid': 2464592},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Omaha',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2465512',
  'woeid': 2465512},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Orlando',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2466256',
  'woeid': 2466256},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Philadelphia',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2471217',
  'woeid': 2471217},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Phoenix',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2471390',
  'woeid': 2471390},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Pittsburgh',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2473224',
  'woeid': 2473224},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Portland',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2475687',
  'woeid': 2475687},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Providence',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2477058',
  'woeid': 2477058},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Raleigh',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2478307',
  'woeid': 2478307},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Richmond',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2480894',
  'woeid': 2480894},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Sacramento',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2486340',
  'woeid': 2486340},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'St. Louis',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2486982',
  'woeid': 2486982},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Salt Lake City',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2487610',
  'woeid': 2487610},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'San Antonio',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2487796',
  'woeid': 2487796},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'San Diego',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2487889',
  'woeid': 2487889},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'San Francisco',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2487956',
  'woeid': 2487956},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'San Jose',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2488042',
  'woeid': 2488042},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Seattle',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2490383',
  'woeid': 2490383},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Tallahassee',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2503713',
  'woeid': 2503713},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Tampa',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2503863',
  'woeid': 2503863},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Tucson',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2508428',
  'woeid': 2508428},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Virginia Beach',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2512636',
  'woeid': 2512636},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'Washington',
  'parentid': 23424977,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/2514815',
  'woeid': 2514815},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Osaka',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/15015370',
  'woeid': 15015370},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Kyoto',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/15015372',
  'woeid': 15015372},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'Delhi',
  'parentid': 23424848,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/20070458',
  'woeid': 20070458},
 {'country': 'United Arab Emirates',
  'countryCode': 'AE',
  'name': 'United Arab Emirates',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424738',
  'woeid': 23424738},
 {'country': 'Algeria',
  'countryCode': 'DZ',
  'name': 'Algeria',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424740',
  'woeid': 23424740},
 {'country': 'Argentina',
  'countryCode': 'AR',
  'name': 'Argentina',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424747',
  'woeid': 23424747},
 {'country': 'Australia',
  'countryCode': 'AU',
  'name': 'Australia',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424748',
  'woeid': 23424748},
 {'country': 'Austria',
  'countryCode': 'AT',
  'name': 'Austria',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424750',
  'woeid': 23424750},
 {'country': 'Bahrain',
  'countryCode': 'BH',
  'name': 'Bahrain',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424753',
  'woeid': 23424753},
 {'country': 'Belgium',
  'countryCode': 'BE',
  'name': 'Belgium',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424757',
  'woeid': 23424757},
 {'country': 'Belarus',
  'countryCode': 'BY',
  'name': 'Belarus',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424765',
  'woeid': 23424765},
 {'country': 'Brazil',
  'countryCode': 'BR',
  'name': 'Brazil',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424768',
  'woeid': 23424768},
 {'country': 'Canada',
  'countryCode': 'CA',
  'name': 'Canada',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424775',
  'woeid': 23424775},
 {'country': 'Chile',
  'countryCode': 'CL',
  'name': 'Chile',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424782',
  'woeid': 23424782},
 {'country': 'Colombia',
  'countryCode': 'CO',
  'name': 'Colombia',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424787',
  'woeid': 23424787},
 {'country': 'Denmark',
  'countryCode': 'DK',
  'name': 'Denmark',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424796',
  'woeid': 23424796},
 {'country': 'Dominican Republic',
  'countryCode': 'DO',
  'name': 'Dominican Republic',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424800',
  'woeid': 23424800},
 {'country': 'Ecuador',
  'countryCode': 'EC',
  'name': 'Ecuador',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424801',
  'woeid': 23424801},
 {'country': 'Egypt',
  'countryCode': 'EG',
  'name': 'Egypt',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424802',
  'woeid': 23424802},
 {'country': 'Ireland',
  'countryCode': 'IE',
  'name': 'Ireland',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424803',
  'woeid': 23424803},
 {'country': 'France',
  'countryCode': 'FR',
  'name': 'France',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424819',
  'woeid': 23424819},
 {'country': 'Ghana',
  'countryCode': 'GH',
  'name': 'Ghana',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424824',
  'woeid': 23424824},
 {'country': 'Germany',
  'countryCode': 'DE',
  'name': 'Germany',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424829',
  'woeid': 23424829},
 {'country': 'Greece',
  'countryCode': 'GR',
  'name': 'Greece',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424833',
  'woeid': 23424833},
 {'country': 'Guatemala',
  'countryCode': 'GT',
  'name': 'Guatemala',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424834',
  'woeid': 23424834},
 {'country': 'Indonesia',
  'countryCode': 'ID',
  'name': 'Indonesia',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424846',
  'woeid': 23424846},
 {'country': 'India',
  'countryCode': 'IN',
  'name': 'India',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424848',
  'woeid': 23424848},
 {'country': 'Israel',
  'countryCode': 'IL',
  'name': 'Israel',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424852',
  'woeid': 23424852},
 {'country': 'Italy',
  'countryCode': 'IT',
  'name': 'Italy',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424853',
  'woeid': 23424853},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Japan',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424856',
  'woeid': 23424856},
 {'country': 'Jordan',
  'countryCode': 'JO',
  'name': 'Jordan',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424860',
  'woeid': 23424860},
 {'country': 'Kenya',
  'countryCode': 'KE',
  'name': 'Kenya',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424863',
  'woeid': 23424863},
 {'country': 'Korea',
  'countryCode': 'KR',
  'name': 'Korea',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424868',
  'woeid': 23424868},
 {'country': 'Kuwait',
  'countryCode': 'KW',
  'name': 'Kuwait',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424870',
  'woeid': 23424870},
 {'country': 'Lebanon',
  'countryCode': 'LB',
  'name': 'Lebanon',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424873',
  'woeid': 23424873},
 {'country': 'Latvia',
  'countryCode': 'LV',
  'name': 'Latvia',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424874',
  'woeid': 23424874},
 {'country': 'Oman',
  'countryCode': 'OM',
  'name': 'Oman',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424898',
  'woeid': 23424898},
 {'country': 'Mexico',
  'countryCode': 'MX',
  'name': 'Mexico',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424900',
  'woeid': 23424900},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Malaysia',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424901',
  'woeid': 23424901},
 {'country': 'Nigeria',
  'countryCode': 'NG',
  'name': 'Nigeria',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424908',
  'woeid': 23424908},
 {'country': 'Netherlands',
  'countryCode': 'NL',
  'name': 'Netherlands',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424909',
  'woeid': 23424909},
 {'country': 'Norway',
  'countryCode': 'NO',
  'name': 'Norway',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424910',
  'woeid': 23424910},
 {'country': 'New Zealand',
  'countryCode': 'NZ',
  'name': 'New Zealand',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424916',
  'woeid': 23424916},
 {'country': 'Peru',
  'countryCode': 'PE',
  'name': 'Peru',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424919',
  'woeid': 23424919},
 {'country': 'Pakistan',
  'countryCode': 'PK',
  'name': 'Pakistan',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424922',
  'woeid': 23424922},
 {'country': 'Poland',
  'countryCode': 'PL',
  'name': 'Poland',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424923',
  'woeid': 23424923},
 {'country': 'Panama',
  'countryCode': 'PA',
  'name': 'Panama',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424924',
  'woeid': 23424924},
 {'country': 'Portugal',
  'countryCode': 'PT',
  'name': 'Portugal',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424925',
  'woeid': 23424925},
 {'country': 'Qatar',
  'countryCode': 'QA',
  'name': 'Qatar',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424930',
  'woeid': 23424930},
 {'country': 'Philippines',
  'countryCode': 'PH',
  'name': 'Philippines',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424934',
  'woeid': 23424934},
 {'country': 'Puerto Rico',
  'countryCode': 'PR',
  'name': 'Puerto Rico',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424935',
  'woeid': 23424935},
 {'country': 'Russia',
  'countryCode': 'RU',
  'name': 'Russia',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424936',
  'woeid': 23424936},
 {'country': 'Saudi Arabia',
  'countryCode': 'SA',
  'name': 'Saudi Arabia',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424938',
  'woeid': 23424938},
 {'country': 'South Africa',
  'countryCode': 'ZA',
  'name': 'South Africa',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424942',
  'woeid': 23424942},
 {'country': 'Singapore',
  'countryCode': 'SG',
  'name': 'Singapore',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424948',
  'woeid': 23424948},
 {'country': 'Spain',
  'countryCode': 'ES',
  'name': 'Spain',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424950',
  'woeid': 23424950},
 {'country': 'Sweden',
  'countryCode': 'SE',
  'name': 'Sweden',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424954',
  'woeid': 23424954},
 {'country': 'Switzerland',
  'countryCode': 'CH',
  'name': 'Switzerland',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424957',
  'woeid': 23424957},
 {'country': 'Thailand',
  'countryCode': 'TH',
  'name': 'Thailand',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424960',
  'woeid': 23424960},
 {'country': 'Turkey',
  'countryCode': 'TR',
  'name': 'Turkey',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424969',
  'woeid': 23424969},
 {'country': 'United Kingdom',
  'countryCode': 'GB',
  'name': 'United Kingdom',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424975',
  'woeid': 23424975},
 {'country': 'Ukraine',
  'countryCode': 'UA',
  'name': 'Ukraine',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424976',
  'woeid': 23424976},
 {'country': 'United States',
  'countryCode': 'US',
  'name': 'United States',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424977',
  'woeid': 23424977},
 {'country': 'Venezuela',
  'countryCode': 'VE',
  'name': 'Venezuela',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424982',
  'woeid': 23424982},
 {'country': 'Vietnam',
  'countryCode': 'VN',
  'name': 'Vietnam',
  'parentid': 1,
  'placeType': {'code': 12, 'name': 'Country'},
  'url': 'http://where.yahooapis.com/v1/place/23424984',
  'woeid': 23424984},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Petaling',
  'parentid': 23424901,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/56013632',
  'woeid': 56013632},
 {'country': 'Malaysia',
  'countryCode': 'MY',
  'name': 'Hulu Langat',
  'parentid': 23424901,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/56013645',
  'woeid': 56013645},
 {'country': 'Saudi Arabia',
  'countryCode': 'SA',
  'name': 'Ahsa',
  'parentid': 23424938,
  'placeType': {'code': 9, 'name': 'Unknown'},
  'url': 'http://where.yahooapis.com/v1/place/56120136',
  'woeid': 56120136},
 {'country': 'Japan',
  'countryCode': 'JP',
  'name': 'Okayama',
  'parentid': 23424856,
  'placeType': {'code': 7, 'name': 'Town'},
  'url': 'http://where.yahooapis.com/v1/place/90036018',
  'woeid': 90036018}]

In [35]:
sfo_trends = twitter.trends.place(_id = 2972)

Get the follower and following list


In [36]:
# Get a list of followers of a particular user
twitter.followers.ids(screen_name="cocoweixu")


Out[36]:
{'ids': [249658827,
  22073831,
  858213902,
  184892727,
  2546761855,
  213559733,
  707209965895811072,
  872534265816391680,
  901278224784789504,
  909644876374880256,
  824149378998923265,
  58635518,
  562363,
  798009020493623296,
  905671183378427905,
  183036543,
  809317015412424704,
  543445262,
  190480558,
  888076824,
  77946263,
  907890988839976960,
  791889813557288961,
  8883702,
  24935066,
  3027128032,
  15417589,
  4311826763,
  908031549278322689,
  392773234,
  136592057,
  456676430,
  901443311969415170,
  3741979273,
  409976479,
  841734286374014976,
  8164582,
  997094588,
  358679499,
  902520862833754112,
  905116529141927940,
  4034261925,
  1298642443,
  215960810,
  632815919,
  55606728,
  1965061681,
  3170202147,
  3027431134,
  63901070,
  906613973423865856,
  92858192,
  363282326,
  721764668172316672,
  3117068570,
  41987050,
  305960097,
  384898175,
  3739387759,
  308368488,
  1119859495,
  19064792,
  878621253778554881,
  840865638671364096,
  3891522376,
  2428961096,
  4802912387,
  242113487,
  743763381782351873,
  3303639662,
  894540531304341504,
  3585757152,
  17344252,
  34261461,
  15960453,
  883967179410087937,
  878067187285667841,
  881362815587667968,
  802360447370481664,
  878952075790626818,
  161609480,
  21022183,
  238903845,
  903966473416130560,
  811754278977056768,
  1928648570,
  405248214,
  901824161139482624,
  903963978136567808,
  16719185,
  304881243,
  194186221,
  1189958804,
  150111290,
  342901604,
  969678978,
  903828292263976961,
  117795954,
  157235124,
  2943621208,
  57331307,
  903585673801695232,
  4323348691,
  1446250579,
  775195516552437765,
  4784640996,
  774774230789591044,
  14075757,
  761143674277236736,
  845222708430319617,
  72796350,
  24133327,
  2724167859,
  2198622000,
  71524168,
  902165549509169152,
  74773590,
  902000246779236354,
  54840818,
  80905912,
  144548176,
  845522463320555520,
  121615708,
  190453711,
  2176606374,
  447421255,
  390085314,
  87861974,
  1062467430,
  821357149,
  794379292432076800,
  1380180044,
  358095238,
  1143718910,
  819397287256395778,
  311785039,
  900154491626033156,
  18831946,
  900086034578407425,
  2558177294,
  2156555263,
  598481439,
  702567524353716224,
  881489973844873218,
  16657406,
  14050414,
  898565245484105732,
  846357545908420608,
  899242733134598145,
  898790040070836224,
  628590046,
  894336911799726080,
  879399228002508800,
  883618046606233601,
  3178176894,
  1276771741,
  321370262,
  163429045,
  710401185392435200,
  3223121497,
  545960158,
  17696767,
  4712272236,
  4597562897,
  463735426,
  319518346,
  840814580590764032,
  254731165,
  894194843005710336,
  152389650,
  561015992,
  808170104781344768,
  873935195627507716,
  843900956,
  17657956,
  541642290,
  895568050564378625,
  700724174457847812,
  44017949,
  7434272,
  1102453202,
  893350388652552192,
  863533043541307392,
  4569529047,
  389740508,
  786941656859811840,
  197696458,
  301283997,
  301992639,
  2471392249,
  4799870894,
  894786870520930304,
  19363941,
  47470358,
  140618811,
  1442986766,
  16870304,
  84508784,
  1126273832,
  894208116899934213,
  2253689880,
  864107784513626113,
  3551476716,
  14108909,
  35475501,
  889398272812568577,
  14475837,
  837649799029510144,
  183072220,
  91852037,
  888903414125658112,
  2366175090,
  890966966726479874,
  893369040181182464,
  892266780151865344,
  892400398778216448,
  2687205451,
  893131011747323905,
  831389572319866880,
  599316250,
  1317058032,
  322573581,
  191734048,
  2550133394,
  242470055,
  56650735,
  13467742,
  865189474174742528,
  712806842011922432,
  1873325364,
  104292059,
  1550283744,
  383503253,
  855916360001388545,
  891184874673111040,
  2435694588,
  548286780,
  231259750,
  2909100820,
  3160068740,
  891470396159135744,
  886031138195722240,
  3139398414,
  890902820916002816,
  891077171673931776,
  2413022749,
  246939962,
  764228329,
  3823770357,
  885079989846249472,
  889791649148059648,
  708740088,
  286999770,
  255095958,
  17672969,
  3749457919,
  706490990916472832,
  888856707132162049,
  883658030113599488,
  3296026410,
  446659775,
  312063522,
  888240014802378753,
  36862426,
  102525575,
  358833888,
  835165747731124224,
  848208270141644800,
  804448551874875392,
  389073737,
  501197826,
  4066507274,
  230403822,
  752792906713468928,
  2291051035,
  244281046,
  961291344,
  429589389,
  233546125,
  736819548012314624,
  7347012,
  767345894,
  1652467506,
  432064449,
  2839825685,
  165781656,
  885214564446478336,
  884767389241544704,
  884914862312181764,
  57821987,
  24354897,
  21948372,
  35063505,
  847350174334599169,
  855046987661557764,
  844092413530447872,
  884599589457866752,
  704588700,
  29964280,
  1041908336,
  2279833808,
  47877496,
  881919515180769280,
  884329003166740480,
  153704945,
  871311116760223744,
  855901513109164033,
  15095910,
  1398654900,
  793892988128677888,
  4205573718,
  378192980,
  904801027,
  883579521756274690,
  2968827887,
  66708144,
  49679526,
  93621853,
  67679542,
  881673659223465984,
  111512475,
  173475613,
  3232757856,
  418699840,
  79022336,
  107186366,
  843355236425072640,
  762167287713452032,
  749869030987620352,
  57859591,
  955054338,
  853295142857392128,
  4344490281,
  30020145,
  801372548940398593,
  49997446,
  773989620623245315,
  2975628301,
  1460783785,
  577526312,
  25642254,
  56686035,
  16893095,
  898691,
  4922683392,
  879725441270992896,
  2561105574,
  2378685590,
  726053744731807744,
  341272110,
  3732349529,
  49693598,
  2968801425,
  2582907619,
  870458905247137792,
  75316224,
  1472869790,
  40520927,
  34637104,
  862953651383525376,
  54115391,
  23511272,
  38253569,
  8321382,
  3406130092,
  15708024,
  131745943,
  15183502,
  422279531,
  19583953,
  877868973026455553,
  632884902,
  139078362,
  700478923491028994,
  920387971,
  737198802,
  6107302,
  84990651,
  194331871,
  181364134,
  18840616,
  77022041,
  106618656,
  1106806614,
  2975271647,
  706365312245960704,
  145837262,
  722810851204272128,
  848433722030534656,
  614282721,
  875934857326583808,
  80382239,
  36885647,
  2531521,
  21705678,
  875810756306120705,
  715556347857739776,
  15820904,
  3402169582,
  628484980,
  132314648,
  1526007793,
  722609891811037185,
  2365545571,
  2207815835,
  3716745856,
  66588479,
  199286042,
  905399486,
  832495379551703040,
  872259949820166144,
  301794694,
  544875915,
  110057607,
  1658410471,
  47931955,
  70132498,
  107390426,
  210887414,
  272924750,
  910199214,
  39179060,
  1339153298,
  335038158,
  709493676121042945,
  23889840,
  313916051,
  808123332231135232,
  589506730,
  859770473982246912,
  456022962,
  2978830034,
  17963230,
  206238446,
  871953171043803136,
  735065916,
  804278694,
  44890391,
  125973330,
  18502745,
  145160621,
  869325628742541312,
  43684310,
  859751652529770497,
  36828709,
  2734655356,
  17396121,
  811545986703261696,
  3244653688,
  20550549,
  710917213994102784,
  255853308,
  2419341168,
  375167170,
  816258973489889280,
  77255388,
  367448097,
  2228153677,
  3372266950,
  16419153,
  3948845233,
  203359959,
  49134565,
  118036080,
  866469276978364416,
  710203063806664705,
  862316124909821952,
  44378228,
  866359041601056768,
  79799238,
  864010846321561600,
  795701305691910144,
  155213598,
  3193359335,
  865254426101067778,
  30131354,
  138794267,
  481987237,
  860174065713262593,
  795846713198125056,
  4194885567,
  856921467329667072,
  1950367111,
  743862289208606720,
  400636259,
  861673053092274176,
  509091855,
  72802815,
  32814314,
  2362286406,
  602139077,
  845065612057563136,
  569958542,
  245246543,
  361494081,
  111866742,
  2827074985,
  108190484,
  2735117372,
  712954492052836353,
  3051329329,
  396231300,
  28511335,
  2555868158,
  3192618236,
  19238587,
  3181517148,
  2387845717,
  322872189,
  857990064059568129,
  793097032026116096,
  257691637,
  17480356,
  813580321929236480,
  604344711,
  2827226552,
  1433806219,
  24789105,
  2788179325,
  784457154761666561,
  856977509958791168,
  762050461062967296,
  1065456950,
  16859687,
  811495366986186752,
  74087997,
  17040287,
  146223124,
  14482717,
  714594090,
  2882233458,
  1003091106,
  1240642238,
  66613340,
  64225502,
  17702807,
  287595303,
  35404512,
  853988619781931009,
  850104281197928454,
  103143340,
  55219580,
  109570784,
  799834387135143936,
  4829243619,
  18867344,
  779000596196057088,
  852474677498757121,
  144679159,
  3364327647,
  19848224,
  774548448095920128,
  823904123015856129,
  241576294,
  54528334,
  24078210,
  231845623,
  352529814,
  34239470,
  3698684115,
  115119601,
  706404512882266114,
  988051447,
  1311084481,
  3781135528,
  1555165788,
  3845466500,
  129493491,
  849063509866532864,
  5666242,
  794733816,
  472602187,
  331639736,
  1123986931,
  77525682,
  3175511576,
  1907956154,
  704516289197449216,
  54593217,
  848977528979107845,
  1558774824,
  2852932127,
  1333013496,
  2444977903,
  2957147102,
  3684098017,
  2307948594,
  232241595,
  829482257043902466,
  4025889539,
  167020405,
  807894948,
  846006710586171392,
  46027761,
  91369226,
  2835097981,
  2319549318,
  704558463,
  64427872,
  1689257286,
  2343705248,
  4446641,
  3740077215,
  846984844215246848,
  844942418776653824,
  374177127,
  21828411,
  22408636,
  830695882630651905,
  107813650,
  14973137,
  152161304,
  769274453335367680,
  571597772,
  84435115,
  707380291552223233,
  101609102,
  801139238762749953,
  844162646798614528,
  844835897057030145,
  151490538,
  838989163374362624,
  844721606341541892,
  774972066424459264,
  2980393858,
  27247167,
  223536535,
  193690864,
  1184233051,
  61001779,
  842065482027020289,
  793840093169541120,
  842036231328301057,
  19068097,
  1283437206,
  636703172,
  2967221722,
  65518071,
  376008989,
  833048111048056832,
  186354969,
  776074951262699521,
  3309110927,
  37117978,
  836137007998988288,
  806110972515676160,
  839139748522389504,
  3237585948,
  121516577,
  139556785,
  357527380,
  838079026086334464,
  1387433462,
  836025650112827394,
  800261868619038720,
  26098237,
  124165252,
  835716502078779393,
  124552820,
  4880290533,
  824794440409706496,
  346644982,
  822985676463476737,
  834728804052447235,
  154942547,
  835838876174295040,
  759748915218440196,
  873248107,
  3072389383,
  14807028,
  4815849681,
  14908120,
  20244711,
  833706506159788033,
  440138503,
  48963777,
  1325289612,
  2650004130,
  3022117295,
  2749058367,
  3139434814,
  19057606,
  744932310345203712,
  94026761,
  1495151930,
  827027155619966976,
  3508282993,
  4207676733,
  2402350662,
  3247216258,
  91390447,
  2826830103,
  763446404937228289,
  767815929719771136,
  330151669,
  1149336108,
  185313285,
  817720604795105280,
  830042875887026177,
  256644046,
  783700290344288256,
  348953589,
  35395142,
  4840304653,
  808398554788073472,
  14084820,
  40204501,
  3095738459,
  1341685472,
  487719495,
  818798801376935937,
  3535064414,
  1006391,
  826422008971943936,
  132574639,
  893744982,
  381040648,
  733536950963994624,
  146734981,
  1496727248,
  1061897094,
  820718791780921345,
  716637601604591616,
  2167057326,
  13023812,
  767424113107410945,
  167693954,
  826819698,
  3980528099,
  770233588721868802,
  822281546103037952,
  821864946195689472,
  813638615377002496,
  1047973322,
  75285356,
  36260491,
  65409353,
  3837563543,
  1227362046,
  798857316036538368,
  763368160527544320,
  4142688494,
  16009471,
  6003022,
  818629616185262081,
  120004601,
  9465172,
  18537543,
  26010473,
  719116151398211584,
  4659632781,
  3293187707,
  816607721256423424,
  788305272934690816,
  372050829,
  28964665,
  1210518529,
  364233030,
  712659084214816769,
  147994417,
  813996809228079104,
  16083005,
  2926344380,
  15481158,
  562632643,
  812127939663974407,
  810573863964831749,
  750051727861219328,
  2437237957,
  232127461,
  15777344,
  775134407871135744,
  1499527722,
  8082492,
  2584942625,
  224028203,
  18059052,
  770750528267575296,
  705166434058502145,
  203249100,
  218635121,
  17537613,
  735511049403797504,
  704141474762346496,
  1273956583,
  378526664,
  198795345,
  732544572723695616,
  1427629783,
  387697086,
  572804589,
  107150164,
  15997976,
  121535278,
  18400838,
  741641313255366656,
  1260361130,
  754930082846695425,
  71502071,
  805921752974966784,
  74403351,
  787908648089505792,
  82626308,
  4120580026,
  805355579590012928,
  116548105,
  1362357589,
  615516918,
  130016669,
  86772879,
  771655411292213248,
  17118071,
  1953084066,
  735194437,
  3078068250,
  21672352,
  919860212,
  48337380,
  3439149258,
  231722071,
  472848796,
  636072341,
  2992357806,
  2858197869,
  2306462901,
  14529703,
  1979318286,
  575376342,
  8440272,
  762093566273343488,
  789614473745010688,
  2866256416,
  2745108159,
  187655958,
  563821235,
  847860505,
  3908569939,
  1190096846,
  132476783,
  786835291319316480,
  18874262,
  20976238,
  865927014,
  798307943338938368,
  13759132,
  55598639,
  3061607856,
  275451640,
  797338618540871680,
  151276265,
  716744871403528192,
  3567266417,
  7551282,
  1409748306,
  153102421,
  2562948282,
  40745161,
  160742295,
  793155956762902528,
  795233456426917888,
  793483735018504192,
  47992614,
  795011057555107841,
  4780970248,
  793843626522456064,
  2210050848,
  1329020666,
  2432257081,
  3319225365,
  792067425659260928,
  791464679793045504,
  703021549,
  15496407,
  54901283,
  2903116300,
  13574722,
  189581991,
  242259203,
  475115126,
  11702732,
  323601949,
  2451712820,
  1969042490,
  347137609,
  16621479,
  210684204,
  787120483816857601,
  373725385,
  745778402930503681,
  34376328,
  40126131,
  3406278903,
  2491490379,
  1011673771,
  783857924649127936,
  777968846,
  3654952453,
  544803093,
  715153720082882560,
  158854643,
  1436893968,
  2895770934,
  227769423,
  1677625856,
  258032124,
  60029927,
  8546772,
  24480294,
  34709963,
  709624849698660352,
  741587730199511041,
  779342054610472960,
  714483357980078080,
  35246295,
  716691354907226112,
  151947804,
  49076557,
  2999992556,
  54902860,
  2742957269,
  137662290,
  18093976,
  203001665,
  17845915,
  354342560,
  38812730,
  50751569,
  753571748860293120,
  50995855,
  16561841,
  1023445663,
  556526568,
  402295086,
  179611209,
  755063767571062784,
  21071552,
  3099144765,
  2182803043,
  5692222,
  3619779496,
  263108959,
  13408762,
  61337075,
  2835996290,
  766790530290245633,
  141612471,
  8840842,
  723101371658997764,
  325371313,
  765657883870498816,
  2770076647,
  757590703593619456,
  727229742303207425,
  768008949161418752,
  756486168464723969,
  750083858779996161,
  313792455,
  3550749023,
  209486551,
  766452270657576961,
  389770617,
  21718783,
  18366905,
  2931382049,
  2791947167,
  172179385,
  764817898057502720,
  4418917042,
  746921042971525122,
  2432089724,
  237336711,
  3305766383,
  82018350,
  758984432443285504,
  2989295320,
  386624959,
  231805778,
  3411269081,
  738482256705114113,
  3054783617,
  1591003886,
  743696568939753475,
  1229258780,
  759116637769494528,
  320811432,
  2191799629,
  318154395,
  200091105,
  1067270929,
  909707438,
  2182428074,
  3182816687,
  2992176207,
  301079701,
  18163032,
  2818867628,
  756472637409357825,
  476585112,
  442313809,
  3334971,
  ...],
 'next_cursor': 0,
 'next_cursor_str': '0',
 'previous_cursor': 0,
 'previous_cursor_str': '0'}

In [37]:
# Get a particular user's timeline (up to 3,200 of his/her most recent tweets)
twitter.statuses.user_timeline(screen_name="billybob")


Out[37]:
[{'contributors': None,
  'coordinates': None,
  'created_at': 'Wed Mar 09 04:03:35 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 45333886930124800,
  'id_str': '45333886930124800',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 1,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': 'Hey monkey nuts were now live on hulu! Check us out!\nhttp://www.hulu.com/watch/221783/trailer-trash-faceoff?from=fb_share',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Tue Feb 22 09:29:44 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 4,
  'favorited': False,
  'geo': None,
  'id': 39980146186403840,
  'id_str': '39980146186403840',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 10,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': 'Lost my toof',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sat Feb 19 23:48:27 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 16334824,
     'id_str': '16334824',
     'indices': [0, 14],
     'name': 'Taryn Southern',
     'screen_name': 'TarynSouthern'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 39109087627198464,
  'id_str': '39109087627198464',
  'in_reply_to_screen_name': 'TarynSouthern',
  'in_reply_to_status_id': 39021742575976448,
  'in_reply_to_status_id_str': '39021742575976448',
  'in_reply_to_user_id': 16334824,
  'in_reply_to_user_id_str': '16334824',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 1,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@TarynSouthern losing my watch',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sat Feb 19 16:24:57 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 1,
  'favorited': False,
  'geo': None,
  'id': 38997474056208384,
  'id_str': '38997474056208384',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 2,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': 'Never go to the petting zoo after too many cocktails!',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Fri Feb 18 05:06:50 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 19805749,
     'id_str': '19805749',
     'indices': [0, 12],
     'name': 'todd goldman',
     'screen_name': 'toddgoldman'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 38464432891895808,
  'id_str': '38464432891895808',
  'in_reply_to_screen_name': 'toddgoldman',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 19805749,
  'in_reply_to_user_id_str': '19805749',
  'is_quote_status': False,
  'lang': 'und',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@toddgoldman hi',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Fri Feb 18 04:51:48 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 1,
  'favorited': False,
  'geo': None,
  'id': 38460650577592320,
  'id_str': '38460650577592320',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@lionsgateonline why you called lionsgate? What a stupid name! Are there any lions? Or gates? Makes no sense!',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Fri Feb 18 04:49:58 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 19542638,
     'id_str': '19542638',
     'indices': [0, 15],
     'name': 'Lisa Lampanelli',
     'screen_name': 'LisaLampanelli'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 38460189191573504,
  'id_str': '38460189191573504',
  'in_reply_to_screen_name': 'LisaLampanelli',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 19542638,
  'in_reply_to_user_id_str': '19542638',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@LisaLampanelli I hear you will squirrel munch anything that walks! How bout a cartoon character?',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Fri Feb 18 04:44:14 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 9083222,
     'id_str': '9083222',
     'indices': [0, 10],
     'name': 'Sam Riegel',
     'screen_name': 'samriegel'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 38458745822511105,
  'id_str': '38458745822511105',
  'in_reply_to_screen_name': 'samriegel',
  'in_reply_to_status_id': 38021878702415872,
  'in_reply_to_status_id_str': '38021878702415872',
  'in_reply_to_user_id': 9083222,
  'in_reply_to_user_id_str': '9083222',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@samriegel or just a lady farm animal',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Fri Feb 18 04:40:33 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 1,
  'favorited': False,
  'geo': None,
  'id': 38457821888655360,
  'id_str': '38457821888655360',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 2,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': "I'm thinking twitter should have been called twatter! With a scratch n sniff app!",
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Wed Feb 16 13:47:28 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 9083222,
     'id_str': '9083222',
     'indices': [0, 10],
     'name': 'Sam Riegel',
     'screen_name': 'samriegel'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 37870679395147776,
  'id_str': '37870679395147776',
  'in_reply_to_screen_name': 'samriegel',
  'in_reply_to_status_id': 37700466343157760,
  'in_reply_to_status_id_str': '37700466343157760',
  'in_reply_to_user_id': 9083222,
  'in_reply_to_user_id_str': '9083222',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@samriegel are you hitting on me mister? U know I only fancy the ladies and mid sized farm animals right!',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Wed Feb 16 05:57:03 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 16517277,
     'id_str': '16517277',
     'indices': [3, 11],
     'name': 'LisaBrit',
     'screen_name': 'LisaB55'},
    {'id': 15249171,
     'id_str': '15249171',
     'indices': [62, 73],
     'name': 'Tubefilter',
     'screen_name': 'tubefilter'},
    {'id': 239257191,
     'id_str': '239257191',
     'indices': [101, 110],
     'name': 'Billy Bob',
     'screen_name': 'billybob'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 37752295689170944,
  'id_str': '37752295689170944',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 1,
  'retweeted': False,
  'retweeted_status': {'contributors': None,
   'coordinates': None,
   'created_at': 'Wed Feb 16 05:47:33 +0000 2011',
   'entities': {'hashtags': [],
    'symbols': [],
    'urls': [],
    'user_mentions': [{'id': 15249171,
      'id_str': '15249171',
      'indices': [49, 60],
      'name': 'Tubefilter',
      'screen_name': 'tubefilter'},
     {'id': 239257191,
      'id_str': '239257191',
      'indices': [88, 97],
      'name': 'Billy Bob',
      'screen_name': 'billybob'}]},
   'favorite_count': 0,
   'favorited': False,
   'geo': None,
   'id': 37749907066601472,
   'id_str': '37749907066601472',
   'in_reply_to_screen_name': None,
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'is_quote_status': False,
   'lang': 'en',
   'place': None,
   'retweet_count': 1,
   'retweeted': False,
   'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>',
   'text': "Lionsgate's ‘Trailer Trash’ Teasers Hit Hulu via @tubefilter http://bit.ly/ffMAoJ feat. @billybob",
   'truncated': False,
   'user': {'contributors_enabled': False,
    'created_at': 'Mon Sep 29 19:53:36 +0000 2008',
    'default_profile': False,
    'default_profile_image': False,
    'description': 'Travel publicist at @diamondpr, yogi and devout believer in the law of attraction. Living bicoastal but an official resident of the world.',
    'entities': {'description': {'urls': []}},
    'favourites_count': 536,
    'follow_request_sent': False,
    'followers_count': 1130,
    'following': False,
    'friends_count': 1639,
    'geo_enabled': True,
    'has_extended_profile': False,
    'id': 16517277,
    'id_str': '16517277',
    'is_translation_enabled': False,
    'is_translator': False,
    'lang': 'en',
    'listed_count': 74,
    'location': 'Los Angeles, CA',
    'name': 'LisaBrit',
    'notifications': False,
    'profile_background_color': '0099B9',
    'profile_background_image_url': 'http://pbs.twimg.com/profile_background_images/777710511/ae9559dff70d553e542c804a26240db2.jpeg',
    'profile_background_image_url_https': 'https://pbs.twimg.com/profile_background_images/777710511/ae9559dff70d553e542c804a26240db2.jpeg',
    'profile_background_tile': True,
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/16517277/1445705117',
    'profile_image_url': 'http://pbs.twimg.com/profile_images/808798281530740737/tU3x-ZHk_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/808798281530740737/tU3x-ZHk_normal.jpg',
    'profile_link_color': '0099B9',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': '95E8EC',
    'profile_text_color': '3C3940',
    'profile_use_background_image': True,
    'protected': False,
    'screen_name': 'LisaB55',
    'statuses_count': 2874,
    'time_zone': 'Pacific Time (US & Canada)',
    'translator_type': 'none',
    'url': None,
    'utc_offset': -25200,
    'verified': False}},
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': "RT @LisaB55: Lionsgate's ‘Trailer Trash’ Teasers Hit Hulu via @tubefilter http://bit.ly/ffMAoJ feat. @billybob",
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Wed Feb 16 05:35:39 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 2,
  'favorited': False,
  'geo': None,
  'id': 37746911851192320,
  'id_str': '37746911851192320',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 1,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': 'Can a man get PMS? Possum munchin sickness?',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sun Feb 13 16:07:51 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 1,
  'favorited': False,
  'geo': None,
  'id': 36818844131532801,
  'id_str': '36818844131532801',
  'in_reply_to_screen_name': None,
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 1,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': 'Attention fans, all 24 of you! I am just a cartoon character! I am not real and neither are my tweets! Yer just smokin too much crack!',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sun Feb 13 15:41:05 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 246481013,
     'id_str': '246481013',
     'indices': [0, 12],
     'name': 'Howard Stern',
     'screen_name': 'HowardStern'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 36812107689230336,
  'id_str': '36812107689230336',
  'in_reply_to_screen_name': 'HowardStern',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 246481013,
  'in_reply_to_user_id_str': '246481013',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@HowardStern how do I grow my hair long and purdy like you? been rubbing my own poop in my hair to grow faster but it aint working! Help?',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sun Feb 13 15:29:13 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 1141191,
     'id_str': '1141191',
     'indices': [0, 14],
     'name': 'Michael Clark',
     'screen_name': 'michael_clark'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 36809122724712449,
  'id_str': '36809122724712449',
  'in_reply_to_screen_name': 'michael_clark',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 1141191,
  'in_reply_to_user_id_str': '1141191',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@michael_clark what kind of toe nail sucking idiot has two first names as their name?? Sincerely billy bob',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sun Feb 13 15:22:43 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 816335203069267968,
     'id_str': '816335203069267968',
     'indices': [0, 9],
     'name': 'Sean "Diddy" Combs',
     'screen_name': 'iamDiddy'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 36807488334462976,
  'id_str': '36807488334462976',
  'in_reply_to_screen_name': 'diddy',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 18220175,
  'in_reply_to_user_id_str': '18220175',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@iamdiddy hey possum wrangler how do I get into the drinking bizness like you! I have me a lethal moonshine recipe!',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sat Feb 12 17:04:31 +0000 2011',
  'entities': {'hashtags': [], 'symbols': [], 'urls': [], 'user_mentions': []},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 36470718027792384,
  'id_str': '36470718027792384',
  'in_reply_to_screen_name': 'PaulyShore',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 21681591,
  'in_reply_to_user_id_str': '21681591',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 2,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@PaulyMShore yer like my favorite actor of all time! I want to bend you over and make a man of ya!',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sat Feb 12 16:55:12 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 24621499,
     'id_str': '24621499',
     'indices': [0, 15],
     'name': 'Sophie Romain',
     'screen_name': 'Snuffaluffagus'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 36468374422683649,
  'id_str': '36468374422683649',
  'in_reply_to_screen_name': 'Snuffaluffagus',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 24621499,
  'in_reply_to_user_id_str': '24621499',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@snuffaluffagus how I have pleasured myself to you many a nights',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sat Feb 12 16:50:44 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 816335203069267968,
     'id_str': '816335203069267968',
     'indices': [0, 9],
     'name': 'Sean "Diddy" Combs',
     'screen_name': 'iamDiddy'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 36467250256945152,
  'id_str': '36467250256945152',
  'in_reply_to_screen_name': 'diddy',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 18220175,
  'in_reply_to_user_id_str': '18220175',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': '@iamdiddy where did you learn your english so good? I swear I understand half your words! Impressive.',
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}},
 {'contributors': None,
  'coordinates': None,
  'created_at': 'Sat Feb 12 16:41:14 +0000 2011',
  'entities': {'hashtags': [],
   'symbols': [],
   'urls': [],
   'user_mentions': [{'id': 16334824,
     'id_str': '16334824',
     'indices': [0, 14],
     'name': 'Taryn Southern',
     'screen_name': 'TarynSouthern'}]},
  'favorite_count': 0,
  'favorited': False,
  'geo': None,
  'id': 36464860984254464,
  'id_str': '36464860984254464',
  'in_reply_to_screen_name': 'TarynSouthern',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': 16334824,
  'in_reply_to_user_id_str': '16334824',
  'is_quote_status': False,
  'lang': 'en',
  'place': None,
  'retweet_count': 0,
  'retweeted': False,
  'source': '<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>',
  'text': "@TarynSouthern have we met? I'm southern too? Show me your ho hos!",
  'truncated': False,
  'user': {'contributors_enabled': False,
   'created_at': 'Mon Jan 17 05:43:08 +0000 2011',
   'default_profile': True,
   'default_profile_image': False,
   'description': "Kiss my squirrel munchin' ass.",
   'entities': {'description': {'urls': []},
    'url': {'urls': [{'display_url': 'hulu.com/trailertrash',
       'expanded_url': 'http://www.hulu.com/trailertrash',
       'indices': [0, 22],
       'url': 'http://t.co/5jmsegBCYy'}]}},
   'favourites_count': 0,
   'follow_request_sent': False,
   'followers_count': 96,
   'following': False,
   'friends_count': 22,
   'geo_enabled': False,
   'has_extended_profile': False,
   'id': 239257191,
   'id_str': '239257191',
   'is_translation_enabled': False,
   'is_translator': False,
   'lang': 'en',
   'listed_count': 4,
   'location': 'Trailer Trash',
   'name': 'Billy Bob',
   'notifications': False,
   'profile_background_color': 'C0DEED',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': False,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1238934483/BILLY_BOB_normal.jpg',
   'profile_link_color': '1DA1F2',
   'profile_sidebar_border_color': 'C0DEED',
   'profile_sidebar_fill_color': 'DDEEF6',
   'profile_text_color': '333333',
   'profile_use_background_image': True,
   'protected': False,
   'screen_name': 'billybob',
   'statuses_count': 48,
   'time_zone': 'Alaska',
   'translator_type': 'none',
   'url': 'http://t.co/5jmsegBCYy',
   'utc_offset': -28800,
   'verified': False}}]

In [2]:
from collections import Counter

In [3]:
c = ['a','b','c','a','b','a','c','a']

In [6]:
result = Counter(c)
type(result)


Out[6]:
collections.Counter

In [7]:
result


Out[7]:
Counter({'a': 4, 'b': 2, 'c': 2})

In [8]:
result_dict = dict(result)

In [9]:
type(result_dict)


Out[9]:
dict

In [ ]: